Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|---|
354759 | 顾李奕 | 【C1-5】时间 | C++ | Accepted | 100 | 2 MS | 240 KB | 188 | 2025-10-06 15:07:04 |
#include<iostream> using namespace std; int main(){ int a,b,c; cin>>a>>b>>c; cout<<a*3600<<endl; cout<<b*60<<endl; cout<<c*1<<endl; cout<<a*3600+b*60+c<<endl; return 0; }