728x90
반응형
단순 수학 문제이다.
h1, m1, s1 = map(int, input().split(':'))
h2, m2, s2 = map(int, input().split(':'))
t1 = h1*60*60 + m1*60 + s1
t2 = h2*60*60 + m2*60 + s2
t = t2 - t1 if t2 > t1 else t2-t1+24*60*60
h = t//60//60
m = t//60 % 60
s = t%60
print("%02d:%02d:%02d" % (h, m, s))
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 3058번 짝수를 찾아라(python) (0) | 2021.02.12 |
---|---|
백준 알고리즘 3034번 앵그리 창영(python) (0) | 2021.02.12 |
백준 알고리즘 3028번 창영마을(python) (0) | 2021.02.12 |
백준 알고리즘 2991번 사나운 개(python) (0) | 2021.02.12 |
백준 알고리즘 2985번 세 수(python) (0) | 2021.02.12 |