https://www.acmicpc.net/problem/2293
package baekjoon;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.IOException;
import java.util.StringTokenizer;
// 동전 1
public class BJ2293 {
static int n;
static int k;
static int[] coin;
static int[] dp;
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
n = Integer.parseInt(st.nextToken());
k = Integer.parseInt(st.nextToken());
coin = new int[n];
dp = new int[k+1];
for(int i = 0; i < n; i++) {
coin[i] = Integer.parseInt(br.readLine());
}
dp[0] = 1;
for(int i = 0; i < n; i++) {
for(int j = coin[i]; j <= k; j++) {
dp[j] += dp[j - coin[i]];
}
}
System.out.println(dp[k]);
}
}
아이디어
맞았습니다
후 다른 풀이를 참고하니 1차원 배열로도 가능하여 수정하였다.