forDevLife
[백준] 11047 - 동전0 (자바) 본문
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Scanner;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String[] arr = br.readLine().split(" ");
int N = Integer.parseInt(arr[0]);
int K = Integer.parseInt(arr[1]);
int[] coin = new int[N];
int count = 0;
for(int i=0; i<N; i++) {
coin[i] = Integer.parseInt(br.readLine());
}
for(int i=N-1; i >=0; i--) {
if(coin[i] <= K) {
count += K/coin[i];
K %= coin[i];
}
}
System.out.print(count);
}
}
- scanner 보다 bufferedreader가 훨씬 메모리 / 속도 면에서 빠르다.
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Scanner;
import java.util.StringTokenizer;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine(), " ");
int N = Integer.parseInt(st.nextToken());
int K = Integer.parseInt(st.nextToken());
int[] coin = new int[N];
int count = 0;
for(int i=0; i<N; i++) {
coin[i] = Integer.parseInt(br.readLine());
}
for(int i=N-1; i >=0; i--) {
if(coin[i] <= K) {
count += K/coin[i];
K %= coin[i];
}
}
System.out.print(count);
}
}
- StringTokenizer를 사용하여, String[] 없이도 사용 가능하다.
'알고리즘' 카테고리의 다른 글
[백준] 13305 - 주유소 (자바) (0) | 2021.05.01 |
---|---|
[백준] 1541 - 잃어버린 괄호 (자바) (0) | 2021.04.30 |
[백준] 1931 - 회의실 배정 (자바) (0) | 2021.04.30 |
[백준] 11399 - ATM (자바) (0) | 2021.04.30 |
[코드업] 기초 100제 JAVA (0) | 2021.04.26 |
Comments