Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
132238 叶航帅 05拆分时间 Python3 Accepted 59 MS 3748 KB 85 2025-10-07 14:01:05

Tests(10/10):


Code:

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