백준 2525 파이썬
2024. 1. 17. 11:48ㆍ코딩 도구/백준 (단계별)
반응형
백준 2525 : 오븐 시계
문제
https://www.acmicpc.net/problem/2525
답안 코드 :
A, B = map(int, input().split())
C = int(input())
A += C // 60
B += C % 60
if B >= 60:
A += 1
B -= 60
if A >= 24:
A -= 24
print(A, B)
백준 / 문제 / 단계별로 풀어보기 / 2단계 조건문
# 1차 시도
A, B = map(int, input().split())
C = int(input())
A += C // 60
B += C % 60
print(A, B)
# 2차 시도
A, B = map(int, input().split())
C = int(input())
A += C // 60
B += C % 60
if B >= 60:
A += 1
B -= 60
if A >= 24:
A -= 24
print(A, B)
반응형
'코딩 도구 > 백준 (단계별)' 카테고리의 다른 글
백준 2480 파이썬 (124) | 2024.01.18 |
---|---|
백준 2884 파이썬 (0) | 2024.01.17 |
백준 14681 파이썬 (2) | 2024.01.16 |
백준 2753 파이썬 (2) | 2024.01.16 |
백준 9498 파이썬 (0) | 2024.01.15 |