| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 1512 | 张弛 | 时分秒转换 | C++ | Accepted | 100 | 0 MS | 256 KB | 197 | 2019-10-12 20:59:43 |
#include<iostream> int main(){ int time,s,f,m; scanf("%d",&time); s=time/3600; time=time-(s*60*60); f=time/60; time=time-(f*60); m=time%60; printf("%d:%d:%d",s,f,m); return 0; }