11047번: 동전 0들어가며그리디 기법으로 풀면 쉽게 접근할 수 있는 문제이다. 코드public class 백준11047_동전0 { public static void main(String[] args) throws IOException { BufferedReader reader = new BufferedReader(new InputStreamReader(System.in)); String[] inputs = reader.readLine().split(" "); int n = Integer.parseInt(inputs[0]); int k = Integer.parseInt(inputs[1]); ArrayList arr = new Array..