짱해커가 되어보자

boj 5575 본문

프로그래밍_일반/백준

boj 5575

Spadework 2020. 1. 29. 11:00

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

for _ in range(3):
	l = list(map(int, input().split()))
	h,m,s = l[3]-l[0], l[4]-l[1], l[5]-l[2]
	m += (-1 if s<0 else 1 if s>59 else 0); s %= 60
	h += (-1 if m<0 else 1 if m>59 else 0); m %= 60
	print(h,m,s)

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

boj 10719  (0) 2020.01.29
boj 17362  (0) 2020.01.29
boj 10768  (0) 2020.01.29
boj 11943  (0) 2020.01.29
boj 1297  (0) 2020.01.29
Comments