Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
131954 叶航帅 05拆分时间 Python3 Accepted 67 MS 3744 KB 85 2025-10-02 10:46:31

Tests(10/10):


Code:

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