Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
87709 张泽一 05拆分时间 Python3 Wrong Answer 36 MS 3768 KB 74 2024-08-11 11:15:17

Tests(0/10):


Code:

s=int(input()) a=int(s/3600) z=s%3600 b=int(z/60) c=b%60 print(a,b,c)


Run Info:

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