https://www.acmicpc.net/problem/2525
풀이
a,b = map(int, input().split())
c = int(input())
h = (b+c)//60
m = (b+c)%60
if b+c >= 60:
if a+h >= 24:
a = a - 24
print(a + h , m)
else:
if a >= 24:
a = a - 24
print(a, b+c)
'Python > Baekjoon' 카테고리의 다른 글
백준 2739번 : 구구단 (0) | 2022.10.06 |
---|---|
백준 2480번 : 주사위 세개 (0) | 2022.10.06 |
백준 2884번 : 알람 시계 (0) | 2022.10.06 |
백준 14681번 : 사분면 고르기 (0) | 2022.10.06 |
백준 2753번 : 윤년 (0) | 2022.10.06 |