쏘ing

[Python] 백준 9461 파도반 수열 본문

알고리즘/CLASS 3

[Python] 백준 9461 파도반 수열

한민민 2022. 2. 21. 16:10

https://www.acmicpc.net/problem/9461

풀이

list = [0, 1, 1, 1]

# f(n) = f(n-3) + f(n-2)
for _ in range (4, 101):
    list.append(list[-3] + list[-2])
    
num = int(input())

for _ in range (num):
    print(list[int(input())])

 

Comments