[BOJ] 11047 동전 0

Time Lapse :None

11047.cpp

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
31
32
33
34
35
36
#include <iostream>
#include <math.h>
#include <string>
#include <algorithm>
#include <cstring>
#include <vector>
#include <cstdio>

using namespace std;

#define MAXSIZE 1000

int arr[10];
int ans=0;
int N,K;

int main(void)
{
cin >> N>>K;
for (int i = 0; i < N; i++)
{
cin >> arr[i];
}
N--;
while (K != 0)
{
if (K >= arr[N])
{
K -= arr[N];
ans++;
}
else
N--;
}
cout << ans << endl;
}
Author: Song Hayoung
Link: https://songhayoung.github.io/2020/07/23/PS/BOJ/11047/
Copyright Notice: All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.