Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
91222 周楚航 05拆分时间 Python3 Accepted 39 MS 3760 KB 71 2024-09-21 13:26:28

Tests(10/10):


Code:

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