Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
443873 任晨熙 【C1-5】工作时间 C++ 通过 100 2 MS 240 KB 273 2026-06-07 10:49:08

Tests(3/3):


#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 = t - s; int g = l / 60; int f = l % 60; cout<<g<<" "<<f; return 0; }


测评信息: