Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
87712 周轩屹 05拆分时间 Python3 Wrong Answer 34 MS 3764 KB 75 2024-08-11 11:16:50

Tests(1/10):


Code:

r=input() r=int(r) a=int(r/3600) b=int(r/60) c=int(r%100) print(a,b,c)


Run Info:

------Input------
229
------Answer-----
0 3 49
------Your output-----
0 3 29