Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
334642 | admin_rjp | 【C1-5】时间 | C++ | 通过 | 100 | 2 MS | 248 KB | 208 | 2025-07-18 17:15:37 |
#include<iostream> using namespace std; int main(){ int h,m,s,t; cin>>h>>m>>s; h=h*3600; m=m*60; s=s; t=h+m+s; cout<<h<<endl; cout<<m<<endl; cout<<s<<endl; cout<<t<<endl; return 0; }