https://www.acmicpc.net/problem/1476
내 코드
E,S,M = map(int,input().split())
cnt=0
while True:
cnt+=1
e,m,s = cnt%15,cnt%19,cnt%28
if e == 0: e=15
if m == 0: m=19
if s == 0: s=28
if e==E and m==M and s==S:
print(cnt)
break
1년부터 맞는 년도를 구했다.
준규의 나라 날짜로 바꾼다음 일치하는지 확인하였다.
'코딩테스트 > Python' 카테고리의 다른 글
[Python] 프로그래머스 - 최소직사각형 (0) | 2021.11.17 |
---|---|
[Python] 프로그래머스 - 나머지가 1이 되는 수 찾기 (0) | 2021.11.17 |
[Python] 백준 11724 - 연결 요소의 개수 (0) | 2021.11.16 |
[Python] 백준 1260 - DFS와 BFS (0) | 2021.11.16 |
[Python] 백준 14719 - 빗물 (0) | 2021.11.16 |