Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
116879 | 赵悦然 | 05拆分时间 | C++ | Wrong Answer | 0 MS | 272 KB | 168 | 2025-04-12 18:09:24 |
#include<iostream> #include<cstdio> using namespace std; int main(){ int s,h=s/3600,m=(s-h*3600)/60,x=s%60; cin>>s; cout<<h<<" "<<m<<" "<<x; }
------Input------
602
------Answer-----
0 10 2
------Your output-----
9 6 7