Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
316564 | 邵致远 | 【C1-5】航班时长 | C++ | 解答错误 | 0 | 1 MS | 252 KB | 168 | 2025-04-09 20:33:58 |
#include<iostream> using namespace std; int main(){ int h1,h2,m1,m2,s1,s2; cin>>h1>>m1>>s1>>h2>>m2>>s2; cout<<h1<<m1<<s1<<h2<<m2<<s2; return 0; }