Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
107508 田诗语 05拆分时间 C++ Wrong Answer 1 MS 272 KB 199 2025-01-18 09:24:23

Tests(0/10):


Code:

#include<iostream> 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; }


Run Info:

------Input------
602
------Answer-----
0 10 2
------Your output-----
0 2 0