Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
21313 gaoyx 小哈游泳时间 C++ 通过 100 1 MS 704 KB 173 2021-12-18 14:51:14

Tests(10/10):


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


测评信息: