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