[Python] 백준 알고리즘 온라인 저지 2525 오븐 시계
https://www.acmicpc.net/problem/2525
[Python] 백준 알고리즘 온라인 저지 10926 ??!
https://www.acmicpc.net/problem/10926
[Python] 백준 알고리즘 온라인 저지 18108
1998년생인 내가 태국에서는 2541년생?!
https://www.acmicpc.net/problem/18108
2525 코드
h, m = map(int, input().split())
time = int(input())
h += time // 60
m += time % 60
if m >= 60:
h += 1
m -= 60
if h >= 24:
h -= 24
print(h, m)
10926 코드
print(input()+"??!")
18108 코드
print(int(input()) - 543)
풀이 결과
'알고리즘' 카테고리의 다른 글
백준 16194번 카드 구매하기 2 파이썬 풀이 (0) | 2022.03.12 |
---|---|
백준 11047번 동전 0 파이썬 풀이 (0) | 2022.03.10 |
백준 15686번 치킨 배달 파이썬 풀이 (0) | 2022.03.08 |
백준 1158번 요세푸스 문제 파이썬 풀이 (0) | 2022.03.08 |
백준 11053번 가장 긴 증가하는 부분 수열 파이썬 풀이 (0) | 2022.03.05 |