9095 - 1, 2, 3 더하기

LeeKyoungChang·2022년 2월 6일
0

Algorithm

목록 보기
32/203
post-thumbnail

📚 9095 - 1, 2, 3 더하기

1, 2, 3 더하기

t = int(input())

while t > 0:
    n = int(input())
    dp = [0] * (n + 1)

    for idx in range(1, n+1):
        if idx == 1:
            dp[idx] = 1
        elif idx == 2:
            dp[idx] = 2
        elif idx == 3:
            dp[idx] = 4
        else:
            dp[idx] = dp[idx - 1] + dp[idx - 2] + dp[idx - 3]

    t -= 1
    print(dp[n])

 

profile
"야, (오류 만났어?) 너두 (해결) 할 수 있어"

0개의 댓글