짱해커가 되어보자

boj 1408 본문

프로그래밍_일반/백준

boj 1408

Spadework 2020. 2. 27. 08:08

* Solved 기준 브론즈2 단순 풀이

def hms2s(l): return l[0]*3600+l[1]*60+l[2]
e,s = hms2s(list(map(int, input().split(':')))), hms2s(list(map(int, input().split(':'))))
t = s-e if s-e>=0 else 86400+s-e
print('{:02d}:{:02d}:{:02d}'.format(t//3600, t%3600//60, t%60))

 

'프로그래밍_일반 > 백준' 카테고리의 다른 글

boj 9076  (0) 2020.02.27
boj 13301  (0) 2020.02.27
boj 1371  (0) 2020.02.26
boj 1225  (0) 2020.02.26
boj 14697  (0) 2020.02.26
Comments