[백준]9095

buam·2021년 8월 10일
0

Dynamic Programming

목록 보기
3/4

문제

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

풀이

# bottom-up
import sys

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

for i in range(t):
    n = int(sys.stdin.readline().rstrip())
    d = [0] * 11
    d[0] = 1
    d[1] = 1
    d[2] = 2
    for j in range(3, n+1):
        d[j] = d[j-1] + d[j-2] + d[j-3]
    print(d[n])
profile
운동하는 개발자

0개의 댓글

관련 채용 정보