[백준] #1476 날짜 계산 python
2023. 4. 6. 14:25
https://www.acmicpc.net/problem/1476
📕 설명 📕
다음과 같이, 하나씩의 경우를 제외해가면 풀이하였습니다.
🧑🏻💻 나의 풀이 🧑🏻💻
E1, S1, M1 = map(int, input().split())
e, s, m = 1, 1, 1
result = 1
while True:
if e == E1 and s == S1 and m == M1:
break
e += 1
s += 1
m += 1
result += 1
if e >= 16:
e -= 15
if s >= 29:
s -= 28
if m >= 20:
m -= 19
print(result)
'Programming > Algorithm' 카테고리의 다른 글
[백준] #1021 회전하는 큐 python (0) | 2023.04.10 |
---|---|
[백준] #1439 뒤집기 python (0) | 2023.04.07 |
[백준] #1531 투명 python (0) | 2023.04.05 |
[백준] #2992 크면서 작은 수 python (0) | 2023.04.04 |
[백준] #2740 행렬 곱셈 python (1) | 2023.04.03 |