Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
92252 徐盛熠 05拆分时间 Python3 Accepted 39 MS 3776 KB 101 2024-09-28 18:36:06

Tests(10/10):


Code:

c=input().split() a=c[0] a=int(a) v=a//3600 b=a%3600 n=b%60 m=b//60 print(v,m,n)