| Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|---|
| 438854 | 顾鑫辰 | 【C1-5】工作时间 | C++ | 编译错误 | 0 | 0 MS | 0 KB | 253 | 2026-05-02 21:14:43 |
#include <iostream> using namespace std; int main() { int a,b,c,d; cin>>a; cin>>b; cin>>c; cin>>d; int s=a*60+b; int t=c*60+d; int l=s-t; int t=l/60; int f=l%60; cout<<t<<" "<<f; return 0; }