728x90
※ SW Expert 아카데미의 문제를 무단 복제하는 것을 금지합니다.
728x90
T = int(input())
for test_case in range(1, T + 1):
h1, m1, h2, m2 = map(int, input().split())
m = (m1 + m2) % 60
h = ((h1 + h2 + ((m1 + m2) // 60) - 1) % 12) + 1
print("#{} {} {}".format(test_case, h, m))
728x90
'Problem Solving > SWEA' 카테고리의 다른 글
[SW Expert Academy, SWEA 1970] 쉬운 거스름돈 (python) (0) | 2022.09.06 |
---|---|
[SW Expert Academy, SWEA 1974] 스도쿠 검증 (python) (0) | 2022.09.06 |
[SW Expert Academy, SWEA 1979] 어디에 단어가 들어갈 수 있을까 (python) (0) | 2022.09.06 |
[SW Expert Academy, SWEA 1983] 조교의 성적 매기기 (python) (0) | 2022.09.06 |
[SW Expert Academy, SWEA 1984] 중간 평균값 구하기 (python) (0) | 2022.09.05 |