Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
128222 | 黄俊然 | 05拆分时间 | C++ | Accepted | 2 MS | 272 KB | 402 | 2025-08-11 17:24:44 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int s,a,b,c; cin>>s; a=s/3600; b=s%3600/60; c=s%60; cout<<a<<" "; cout<<b<<" "; cout<<c<<" "; return 0; }