Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
49288 | wanglisuyang | 202406-GESP-一级-休息时间 | C++ | Compile Error | 0 MS | 0 KB | 204 | 2024-07-02 18:50:00 |
#inclode<bits/stds++.h> using namespace std; int main() { int h,m,s,k; cin>>h>>m>>s>>>k; m=m+s/60; s=s%60; h=h+m/60; m=m%60; cout<<h<<":"<<m<<":"<<s; return 0;