-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBAEKJOON_11047
More file actions
30 lines (24 loc) · 864 Bytes
/
BAEKJOON_11047
File metadata and controls
30 lines (24 loc) · 864 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import java.io.*;
import java.util.*;
public class Main {
static ArrayList<Integer> result = new ArrayList<>();
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));
StringTokenizer st = new StringTokenizer(br.readLine());
int N = Integer.parseInt(st.nextToken());
int K = Integer.parseInt(st.nextToken());
int[] coin = new int[N];
for(int i=0; i<N; i++){
coin[i] = Integer.parseInt(br.readLine());
}
int ans = 0;
for(int i=N-1; i>=0; i--){
ans = ans + K/coin[i];
K = K % coin[i];
}
bw.write(String.valueOf(ans));
bw.flush();
bw.close();
}
}