# https://www.acmicpc.net/problem/9095
import sys
import heapq
import math
from collections import deque
sys.stdin = open("input.txt", "rt")
sys.setrecursionlimit(1001*1001)
n = int(input())
m = 3
nums = [1, 2, 3]
dp = [0]*11
dp[0] = 1
for i in range(len(dp)):
for j in range(m):
if i - nums[j] >= 0:
dp[i] += dp[i-nums[j]]
print("dp", dp)
'CodingTest' 카테고리의 다른 글
[Python][백준 17140번] 이차원배열과 연산 (0) | 2021.11.18 |
---|---|
[Python][백준 2688번] 줄어들지 않아 (0) | 2021.11.16 |
[C++][백준 17141번] 연구소 2 (0) | 2021.11.13 |
[Python][백준 17141번] 연구소 2 (0) | 2021.11.11 |
[Python][백준 2529번] 부등호 (0) | 2021.11.09 |