Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
88545 | 赵天瑜 | 05拆分时间 | C++ | Accepted | 1 MS | 272 KB | 227 | 2024-08-19 11:55:08 |
#include<iostream> #include<cstdio> using namespace std; int main() { int X; cin>>X; int h,m,s; h=X/3600; m=(X-h*3600)/60; s=X-h*3600-m*60; cout<<h<<" "<<m<<" "<<s<<endl; return 0; }