2720번: 세탁소 사장 동혁
각 테스트케이스에 대해 필요한 쿼터의 개수, 다임의 개수, 니켈의 개수, 페니의 개수를 공백으로 구분하여 출력한다.
www.acmicpc.net
1. 내 코드
import java.util.Arrays;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int N = sc.nextInt();
for (int test_case = 0; test_case < N; test_case++) {
int change = sc.nextInt();
int[] cent = new int[]{25,10,5,1};
int[] result = new int[4];
for (int i = 0; i < 4; i++) {
result[i] = change/cent[i];
change -= cent[i]*(change/cent[i]);
}
Arrays.stream(result).forEach(x-> System.out.printf("%d ",x));
System.out.println();
}
}
}
0