#include <iostream>#include <vector>using namespace std;int main(){int n, i, k, count = 0;vector <int> arr;cin >> n >> k;for (i = 0; i < n; i++){int num;cin >> num;arr.push_back(num);}for (i = n-1; i >= 0; i--){count += k / arr[i];k %= arr[i];}cout << count;}
'백준' 카테고리의 다른 글
[1813] 마지막 한마디 (0) | 2018.10.19 |
---|---|
[1834] 나머지와 몫이 같은 수 (0) | 2018.10.19 |
[11399] ATM (0) | 2018.10.12 |
[9243] 파일 완전 삭제 (0) | 2018.10.09 |
[2864] 5와 6의 차이 (0) | 2018.10.06 |