-
[백준] 1476번 문제 (날짜 계산) 파이썬(Python) 풀이Problem Solving/Baekjoon 2021. 8. 23. 13:26
https://www.acmicpc.net/problem/1476
e, s, m = map(int, input().split()) s1, s2, s3, year = 1, 1, 1, 1 while e != s1 or s != s2 or m != s3: s1 += 1; s2 += 1; s3 += 1; year += 1 if s1 > 15: s1 = 1 if s2 > 28: s2 = 1 if s3 > 19: s3 = 1 print(year)
브루트포스 문제라 단순하고, 무식하게 풀었다.
while문으로 s1, s2, s3가 주어진 e, s, m과 같을때까지 계속 더해주었다.
'Problem Solving > Baekjoon' 카테고리의 다른 글
[백준] 1107번 문제 (리모컨) 파이썬(Python) 풀이 (0) 2021.08.23 [백준] 2309번 문제 (일곱 난쟁이) 파이썬(Python) 풀이 (0) 2021.08.23 [백준] 10451번 문제 (순열 사이클) 파이썬(Python) 풀이 (0) 2021.08.23 [백준] 11724번 문제 (연결 요소의 개수) 파이썬(Python) 풀이 (0) 2021.08.23 [백준] 1850번 문제 (최대공약수) 파이썬(Python) 풀이 (0) 2021.08.23