| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 1424 | 顾郁铭 | 时分秒转换 | C++ | Accepted | 100 | 0 MS | 260 KB | 148 | 2019-10-08 20:59:44 |
#include<iostream> int main(){ int n,a,b,c; scanf("%d",&n); a=n/3600; b=(n-a*3600)/60; c=n%60; printf("%d:%d:%d",a,b,c); return 0; }