题解列表

筛选

时间显示题目

摘要:解题思路:注意事项:参考代码:n=int(input()) m=(n//3600000)//24 n1=n//1000-m*3600*24 h=n1//3600 m=(n1-h*3600)//……