본문 바로가기

인문학도 개발일지/1일1알고리즘

[알고리즘] 백준 2884: 알람 시계 파이썬 풀이

 

 

 

풀이
H, M = map(int, input().split(" "))

if M >= 45:
    print(H, M-45)
if M < 45:
    if H == 0 :
        print(23, M+15)
    else:
        print(H-1, M+15)