import java.io.IOException; import java.io.BufferedReader; import java.io.InputStreamReader; import java.util.StringTokenizer; import java.util.Arrays; import java.util.Collections; public class Main { static int N,K; static Integer[] coins; public static void main(String[] args) throws IOException { int ans = 0; BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(br.readLine()); N = Integer.parseInt(st.nextToken()); //동전 종류 개수 K = I...
#
java
#
그리디
#
그리디알고리즘
#
동전0
#
백준11047
#
백준동전0
#
백준알고리즘11047
#
자바
원문 링크 : [자바] 백준알고리즘 11047번 동전 0 (S4)