본문 바로가기

알고리즘, 문제 풀이기록

알고리즘 주간 #3 알람시계

https://www.acmicpc.net/problem/2884

H, M = input().split()
H = int(H)
M = int(M)
if H == 0 and M < 45:
    print(23, M + 15)
elif 0 < H < 24 and M < 45:
    print(H - 1, M + 15)
else:
    print(H, M - 45)

 

H = 0 and 0 < M < 45 인 경우를 고려해주지 않아 수정하였다.