Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
107507 | 田诗语 | 05拆分时间 | C++ | Wrong Answer | 1 MS | 268 KB | 255 | 2025-01-18 09:23:01 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() using namespace std; int main(){ int a,x,f,m; cin>>a; x=a/3600; f=(a-x*3600)/60; f=(a-x*3600)%60; cout<<x<<" "<<f<<" "<<m<<endl; return 0; }
------Input------
602
------Answer-----
0 10 2
------Your output-----
0 2 0