Home [Python] 백준 2884번 : 알람 시계
Post
Cancel

[Python] 백준 2884번 : 알람 시계

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이 범위 밖으로 나가는 것을 방지한다.

This post is licensed under CC BY 4.0 by the author.

[Python] 백준 10871번 : X보다 작은 수

[Python] 백준 2577번 : 숫자의 개수