Problem
https://www.acmicpc.net/problem/2884
Solution
1
2
3
4
5
6
7
8
h,m = map(int, input().split())
if m>=45:
print(h,m-45)
else:
if h!=0:
print(h-1,m+15)
else:
print(23,m+15)
Memo
조건문을 활용해 H와 M이 범위 밖으로 나가는 것을 방지한다.
https://www.acmicpc.net/problem/2884
1
2
3
4
5
6
7
8
h,m = map(int, input().split())
if m>=45:
print(h,m-45)
else:
if h!=0:
print(h-1,m+15)
else:
print(23,m+15)
조건문을 활용해 H와 M이 범위 밖으로 나가는 것을 방지한다.
A new version of content is available.