| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 1526 | 徐杨奕 | 时分秒转换 | C++ | Accepted | 100 | 0 MS | 252 KB | 157 | 2019-10-13 10:38:17 |
#include<iostream> int main(){ int t,s,f,m; scanf("%d",&t); s=t/3600; f=(t%3600)/60; m=(t%3600)%60; printf("%d:%d:%d",s,f,m); return 0; }