-코드
while 1:
time1, time2 = input().split()
h1, m1 = map(int, time1.split(':'))
h2, m2 = map(int, time2.split(':'))
if h1 == m1 == h2 == m2 == 0:
break
t = (h1 + h2) * 60 + m1 + m2
d = t // 1440
h = t // 60 % 24
m = t % 60
if d == 0:
print("%02d:%02d" % (h, m))
else:
print("%02d:%02d +%d" % (h, m, d))
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬]8295번 Rectangles (0) | 2021.04.27 |
---|---|
[백준/파이썬]16625번 Das Blinkenlights (0) | 2021.04.27 |
[백준/파이썬]8721번 Wykreślanka (0) | 2021.04.27 |
[백준/파이썬]19771번 Сапсан (0) | 2021.04.27 |
[백준/파이썬]2108번 통계학 (0) | 2021.04.26 |