| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 5306 | 孙文谦 | 时分秒转换 | C++ | Accepted | 100 | 0 MS | 256 KB | 170 | 2020-07-29 10:56:15 |
#include<bits/stdc++.h> using namespace std; int main(){ int n,s,f; cin>>n; s=n/3600; n-=s*3600; f=n/60; n-=f*60; printf("%d:%d:%d",s,f,n); return 0; }