Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
330908 陈信宇 【C1-5】工作时间 C++ 通过 100 2 MS 244 KB 185 2025-07-11 11:30:15

Tests(3/3):


#include<bits/stdc++.h> using namespace std; int main() { int a,b,c,d; cin>>a>>b>>c>>d; int s=(c*60+d)-(a*60+b); int n=s/60; int m=s%60; cout<<n<<" "<<m; return 0; }


测评信息: