보안을 그리다, 훈이

[Baekjoon/Python3] 9095번 1, 2, 3 더하기 본문

Programming/Python & Data Structures

[Baekjoon/Python3] 9095번 1, 2, 3 더하기

HooNeee 2020. 12. 5. 22:08

[Baekjoon/Python3] 9095번 1, 2, 3 더하기

 

www.acmicpc.net/problem/9095

 

9095번: 1, 2, 3 더하기

각 테스트 케이스마다, n을 1, 2, 3의 합으로 나타내는 방법의 수를 출력한다.

www.acmicpc.net

 

n = int(input())
res = [1, 2, 4]
for i in range(2, 9):
    res.append(res[i] + res[i - 1] + res[i - 2])
for i in range(n):
    num = int(input())
    print(res[num - 1])
Comments