| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 1905 | 陈一畅 | 时分秒转换 | C++ | Wrong Answer | 0 | 0 MS | 256 KB | 149 | 2019-10-29 20:20:55 |
#include<iostream> int main(){ int a,b,c,d; scanf("%d",&a); b=a/3600; a=a%3600; c=a/60; d=a%60; printf("%d%d%d",b,c,d); return 0; }