반응형
H,M = map(int,input().split())
if 0 <= H <= 23 and 0 <= M <= 59 :
if M - 45 < 0 :
if H-1 < 0 :
H = H+23
else :
H = H-1
M = M + (60-45)
print("%d %d" %(H,M))
elif M - 45 >= 0 :
M = M-45
print("%d %d" %(H,M))
else :
print("%d %d" %(H,M-45))
반응형
'● 알고리즘, 자료구조 > 2019 알고리즘' 카테고리의 다른 글
while 과 for문의 차이점 (0) | 2019.09.17 |
---|---|
백준 2750 파이썬 / 버블,삽입정렬 / 문제풀이 4종류 (0) | 2019.08.28 |
★ 백준 15552 파이썬 / for / 입출력 방식 빠르게(sys.stdin.readline) 오버타임 방지 (0) | 2019.08.05 |
백준 8393 파이썬 / 누적합 / int와 len / while,for문과 break, continue / (0) | 2019.08.05 |
[py/Error] cannot unpack non-iterable int object (0) | 2019.08.01 |