| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 4895 | zhengxitong | 时分秒转换 | C++ | Wrong Answer | 0 | 0 MS | 248 KB | 156 | 2020-07-25 12:36:00 |
#include<bits/stdc++.h> using namespace std; int main(){ int a,s,m,f; cin>>a; s=a/3600; m=a%3600/60; f=a%3600%60; cout<<s,m,f; return 0; }