백준 5575 - 타임카드
for _ in range(3):
h1, m1, s1, h2, m2, s2 = map(int, input().split())
t = (h2-h1)*3600 + (m2-m1)*60 + (s2-s1) # 전체 근무시간을 초로 변환
print(t//3600, t//60%60, t%60) # 시, 분, 초
- life is short. run.
for _ in range(3):
h1, m1, s1, h2, m2, s2 = map(int, input().split())
t = (h2-h1)*3600 + (m2-m1)*60 + (s2-s1) # 전체 근무시간을 초로 변환
print(t//3600, t//60%60, t%60) # 시, 분, 초