| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 348912 | 王振宇 | 【C1-5】时间 | C++ | Accepted | 100 | 2 MS | 244 KB | 195 | 2025-09-14 14:52:38 |
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c; cin>>a>>b>>c; a=a*3600; b*=60; cout<<a<<endl; cout<<b<<endl; cout<<c<<endl; cout<<a+b+c<<endl; return 0; }