| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 338485 | admin_rjp | 【C1-5】时间 | C++ | Accepted | 100 | 1 MS | 240 KB | 171 | 2025-08-07 15:37:39 |
#include<iostream> using namespace std; int main(){ int x1,y1,x2,y2,t; cin>>x1>>y1>>x2>>y2; t=(x2-x1+24)%24*60-y1+y2; cout<<t<<endl; return 0; }