Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
328830 黄浙峰老师 【C1-5】工作时间 C++ 通过 100 3 MS 244 KB 190 2025-07-07 15:38:45

Tests(3/3):


#include<iostream> using namespace std; int main(){ int a,b,c,d,e,f,t1,t2; cin>>a>>b>>c>>d; t1=a*60+b; t2=c*60+d; e=(t2-t1)/60; f=(t2-t1)%60; cout<<e<<" "<<f; return 0; }


测评信息: