티스토리 뷰
https://www.acmicpc.net/problem/9461
- 6번째 숫자부터는 P[n-1] + P[n-5] 식이 성립
- 점화식 : P[n-1] + P[n-5] (n>5)
import sys
T = int(sys.stdin.readline())
for i in range(0, T):
N = int(sys.stdin.readline())
seq = [1, 1, 1, 2, 2]
if N > 5:
for j in range(5, N):
seq.append(seq[j-1] + seq[j-5])
print(seq[N-1])
'Algorithm > Baekjoon' 카테고리의 다른 글
[백준] 1149 : RGB거리 - Python (0) | 2020.03.12 |
---|---|
[백준] 1110 : 더하기 사이클 - Python (0) | 2020.03.12 |
[백준] 1904 : 01타일 - Python (0) | 2020.03.11 |
[백준] 1541 : 잃어버린 괄호 - Python (0) | 2020.03.11 |
[백준] 11047 : 동전 0 - Python (0) | 2020.03.11 |