백준 9461 파도반 수열 (파이썬)
# [BOJ] 9461. 파도반 수열 2023-01-05
import sys
T = int(sys.stdin.readline())
for tc in range(T):
L = [0, 1, 1, 1, 2, 2, 3, 4, 5, 7, 9]
N = int(sys.stdin.readline())
if N <= 10:
print(L[N])
else:
for n in range(11, N + 1):
L.append(L[n- 5] + L[n - 1])
print(L[N])
문제에 제시된 이후로 조금만 더 그려보면 규칙을 알 수 있다
'Algorithm > BOJ' 카테고리의 다른 글
[BOJ] 14916. 거스름돈 (python) (0) | 2023.02.03 |
---|---|
[BOJ] 1269. 대칭 차집합 (python) (0) | 2023.01.07 |
[BOJ] 2161. 카드1 (python) (0) | 2023.01.04 |
[BOJ] 1094. 막대기 (python) (0) | 2023.01.03 |
[BOJ] 7369. Maya Calendar (python) (0) | 2023.01.02 |