Introfor

[백준] 2525번 오븐 시계 본문

Programming_prob/BaekJoon

[백준] 2525번 오븐 시계

YongArtist 2020. 10. 19. 20:40

입력 받은 수를 모두 분으로 환산해서 시간과 분으로 나타낸다.

1
2
3
4
5
6
7
8
9
def solution():
    h, m = map(int, input().split())
    t = int(input())
    M = 60*+ m + t
    if M >= 1440: M -= 1440
    print(M//60, M % 60)
    
 
solution()
cs

'Programming_prob > BaekJoon' 카테고리의 다른 글

[백준] 5532번 방학 숙제  (0) 2020.10.19
[백준] 3004번 체스판 조각  (0) 2020.10.19
[백준] 2480번 주사위 세개  (0) 2020.10.18
[백준] 1978번 소수 찾기  (0) 2020.10.10
[백준] 2839번 설탕 배달  (0) 2020.10.09
Comments