Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
99485 | 黄雨婷 | 05拆分时间 | C++ | Accepted | 1 MS | 272 KB | 266 | 2024-11-29 21:22:15 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() using namespace std; int main(){ int s,a,b,c; cin>>s; a=s; b=s; c=s; c=s%60; b=s/60%3600; a=s/3600; cout<<a<<" "<<b<<" "<<c; return 0; }