Skip to content

Commit 03e1f9f

Browse files
committed
[#15] Feat: Add 동전
1 parent ceab839 commit 03e1f9f

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

9084.py

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# 동전
2+
3+
T = int(input())
4+
5+
6+
def solution(coins, value):
7+
dp = [0]*(value+1)
8+
dp[0] = 1
9+
10+
for i in range(len(coins)):
11+
for j in range(coins[i], value+1):
12+
dp[j] += dp[j - coins[i]]
13+
return dp[value]
14+
15+
16+
for _ in range(T):
17+
N = int(input())
18+
coins = list(map(int, input().split()))
19+
value = int(input())
20+
count = solution(coins, value)
21+
print(count)

0 commit comments

Comments
 (0)