标签:size -- pre print break tar exce tle class
链接:https://www.nowcoder.com/acm/contest/122/I
来源:牛客网
多组输入
他将给你两个整数 begin 和 end ,代表时间的开始和结束(秒为单位)(0<=begin<end<=10^18)
请你输出时间流逝了多少
在一行中输出流逝的时间。 以hh:mm:ss 两位数字的格式输出(小时若不足两位以两位输出,若超过两位则按实际输出)
0 3600 0 1000000000000000000
01:00:00 277777777777777:46:40
1 while True: 2 try: 3 a, b = map(int, input().strip().split()) 4 ans = b - a 5 m, s = divmod(ans, 60) 6 h, m = divmod(m, 60) 7 print("%02d:%02d:%02d" % (h, m, s)) 8 except EOFError: 9 break
标签:size -- pre print break tar exce tle class
原文地址:https://www.cnblogs.com/yinghualuowu/p/9063346.html