Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
131941 胡海峰老师 05拆分时间 Python3 Accepted 53 MS 3776 KB 100 2025-10-01 20:38:02

Tests(10/10):


Code:

x = int(input()) h = x//3600 x = x - 3600*h m = x//60 x = x - 60*m s = x print(h,m,s)