forDevLife
[백준] 2720 - 세탁소 사장 동혁 본문
- Stringbuffer / append 적극 활용
- 카운팅은 너무 시간 오래걸림, 나누기로 합시다.
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int T = Integer.parseInt(br.readLine());
int[] coins = {25, 10, 5, 1};
for(int i=0; i<T; i++) {
int n = Integer.parseInt(br.readLine());
int m = 0;
StringBuffer sb = new StringBuffer();
for(int j=0; j<coins.length; j++) {
m = n / coins[j];
n = n % coins[j];
sb.append(m + " ");
}
System.out.println(sb);
}
}
}
'알고리즘' 카테고리의 다른 글
[백준] 14659 - 한조서열정리하고옴ㅋㅋ (0) | 2021.06.09 |
---|---|
[백준] 11034 - 캥거루 세마리 2 (0) | 2021.06.09 |
[백준] 10162 - 전자레인지 (0) | 2021.06.08 |
[부스트캠프] 자가진단 문제 (0) | 2021.05.24 |
[이코테]만들 수 없는 금액 <그리디> (0) | 2021.05.03 |
Comments