9461 - 파도반 수열

LeeKyoungChang·2022년 2월 4일
0

Algorithm

목록 보기
19/203
post-thumbnail

📚 9461 - 파도반 수열

파도반 수열 클릭

 

소스

import sys

t = int(sys.stdin.readline())

p = [0] * 110

for idx in range(1, 110):
    if idx == 1 or idx == 2 or idx == 3:
        p[idx] = 1
    elif idx == 4 or idx == 5:
        p[idx] = 2
    else:
        p[idx] = p[idx - 5] + p[idx - 1]

while t > 0:
    n = int(sys.stdin.readline())
    print(p[n])
    t -= 1
profile
"야, (오류 만났어?) 너두 (해결) 할 수 있어"

0개의 댓글