보안을 그리다, 훈이

[Baekjoon/Python3] 2525번 오븐 시계 본문

Programming/Python & Data Structures

[Baekjoon/Python3] 2525번 오븐 시계

HooNeee 2020. 12. 3. 01:55

[Baekjoon/Python3] 2525번 오븐 시계

 

www.acmicpc.net/problem/2525

 

2525번: 오븐 시계

첫째 줄에 종료되는 시각의 시와 분을 공백을 사이에 두고 출력한다. (단, 시는 0부터 23까지의 정수, 분은 0부터 59까지의 정수이다. 디지털 시계는 23시 59분에서 1분이 지나면 0시 0분이 된다.)

www.acmicpc.net

 

# 초 단위 계산
a, b = map(int, input().split())
c = int(input())
min = a * 60 + b + c
if min >= 1440:
    min -= 1440
print(min // 60, min % 60)

 

# 분 단위 계산
a, b = map(int, input().split())
c = int(input())
if (b + c) >= 60:
    h = (c + b) // 60
    b = (c + b) % 60
    a += h
    if a >= 24:
        a -= 24
else:
    b += c
print(a, b)
Comments