Input an N.Formatted time corresponding to the N value , according to the format : hh mm ss ii
( h : hours , m : minutes , s : seconds , i : milliseconds )
eg:
Input | Output |
---|---|
45296789 | 12 34 56 789 |
题目要求我们输入毫秒,然后把输入的毫秒转化成(时:分:秒:毫秒)的形式。
一个来自葡萄牙老哥的代码:
n=int(input())
s=n//1000
m=s//60
h=m//60
print(("%02d "*3+"%03d")%(h,m%60,s%60,n%1000))