https://www.acmicpc.net/problem/2530
풀이
# 2530번 인공지능 시계
h, m, s = map(int, input().split())
time = int(input())
total = (h*3600) + (m*60) + (s)
total += time
ans_h = total // 3600
total %= 3600
ans_m = total // 60
total %= 60
print(ans_h%24, ans_m % 60, total)
출력결과
'백준 > 구현' 카테고리의 다른 글
[백준][Python] 5554번 심부름 가는 길 - 코팩 (0) | 2023.02.22 |
---|---|
[백준][Python] 2010번 플러그 - 코팩 (0) | 2022.11.11 |
[백준][Python] 10039번 평균 점수 - 코팩 (0) | 2022.09.26 |
[백준][Python] 1373번 2진수 8진수 - 코팩 (0) | 2022.09.26 |
[백준][Python] 2038번 럭비 클럽 - 코팩 (0) | 2022.09.25 |