Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
443828 任虞昊 【C1-5】工作时间 C++ 通过 100 2 MS 252 KB 277 2026-06-07 08:42:00

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; }


测评信息: