| Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|---|
| 439028 | 顾鑫辰 | 【C1-5】时间 | C++ | 通过 | 100 | 1 MS | 240 KB | 267 | 2026-05-04 14:24:18 |
#include <iostream> using namespace std; int main() { int x1,y1,x2,y2; cin>>x1; cin>>y1; cin>>x2; cin>>y2; int t1=x1*60+y1; int t2=x2*60+y2; int r=t2-t1; if(r<0){ r+=24*60; } cout<<r; return 0; }