반응형
https://www.acmicpc.net/problem/11047
import java.io.*;
import java.util.*;
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 total=Integer.parseInt(st.nextToken());
int[] kind = new int[n];
int cnt=0;
for(int i=0;i<n;i++) {
kind[i]=Integer.parseInt(br.readLine());
}
for(int i=n-1;i>=0;i--) {
if(total/kind[i]>0) {
cnt+=total/kind[i];
total=total%kind[i];
}
}
System.out.println(cnt);
}
}
728x90
반응형
'코딩테스트 > 백준' 카테고리의 다른 글
백준 10773 : 제로 _ 자바 java (0) | 2023.01.04 |
---|---|
백준 1920 : 수 찾기_자바 java(이분탐색) (0) | 2023.01.04 |
백준 11399:ATM 자바 java (0) | 2023.01.03 |
백준 1929: 소수구하기 자바 java (0) | 2023.01.03 |
백준 10828 : 스택 자바 java (0) | 2023.01.03 |
댓글