| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 47117 | 杨中琦 | 时分秒转换 | C++ | Accepted | 100 | 0 MS | 252 KB | 175 | 2022-07-14 11:30:12 |
#include <iostream> using namespace std; int main() { int n,s,f,m; cin>>n; s=n/3600; m=n%3600; f=m/60; m=m%60; cout<<s<<":"<<f<<":"<<m; return 0; }