728x90
https://www.acmicpc.net/problem/1476
e, s, m = map(int, input().split())
cnt_e, cnt_s, cnt_m = 1, 1, 1
answer = 1
while True:
if cnt_e == e and cnt_s == s and cnt_m == m:
break
cnt_e += 1
cnt_s += 1
cnt_m += 1
if cnt_e == 16:
cnt_e = 1
if cnt_s == 29:
cnt_s = 1
if cnt_m == 20:
cnt_m = 1
answer += 1
print(answer)
브루트 포스 문제였다.
728x90
'[Coding Test] > [백준]' 카테고리의 다른 글
[백준] 14500 파이썬(python) : 테트로미노 - 백트래킹(dfs) (0) | 2022.07.16 |
---|---|
[백준] 1107 파이썬(python) : 리모컨 (0) | 2022.07.16 |
[백준] 3085 파이썬(python) : 사탕 게임 (0) | 2022.07.16 |
[백준] 2309 파이썬(python) : 일곱 난쟁이 (0) | 2022.07.16 |
[백준] 5430 파이썬(python) : AC - (★) (0) | 2022.07.15 |