| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 4950 | 朱嘉铭 | 时分秒转换 | C++ | Wrong Answer | 0 | 0 MS | 244 KB | 137 | 2020-07-26 09:27:18 |
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; cout<<n/600<<":"<<n%600/60<<":"<<n%600%60; return 0; }