Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
116880 | 周泽洋 | 05拆分时间 | C++ | Wrong Answer | 1 MS | 276 KB | 211 | 2025-04-12 18:09:28 |
#include <iostream> using namespace std; int main(){ int a,h,m,s; cin>>a; h=a/(60*60); m=(a-h*60*60)/60; s=(a-(m*60*60+h*60*60)); cout<<h<<" "<<m<<" "<<s; }
------Input------
602
------Answer-----
0 10 2
------Your output-----
0 10 -35398