https://www.acmicpc.net/problem/11047
import java.util.Scanner;
public class feb07three {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner s=new Scanner(System.in);
int N=s.nextInt();
int cost=s.nextInt();
int arr[]=new int[N];
int count=0;
for(int i=0;i<N;i++) {
arr[i]=s.nextInt();
}
for(int i=N-1;i>=0;i--) {
count+=cost/arr[i];
cost%=arr[i];
}
System.out.print(count);
}
}
'JAVA > 백준' 카테고리의 다른 글
[백준/자바] 1026번 보물 (0) | 2022.02.08 |
---|---|
[백준/자바] 2720번 세탁소 사장 동혁 (0) | 2022.02.08 |
[백준/자바] 10162번 전자레인지 (0) | 2022.02.07 |
[백준/자바] 5585번 거스름돈 (0) | 2022.02.07 |
[백준/자바] 9625번 BABBA (0) | 2022.02.06 |
댓글