<코드>
#include <iostream>
#include<string>
using namespace std;
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int input;
cin >> input;
int cnt = 0;
input = 1000 - input;
cnt += input / 500;
input = input % 500;
cnt += input / 100;
input = input % 100;
cnt += input / 50;
input = input % 50;
cnt += input / 10;
input = input % 10;
cnt += input / 5;
input = input % 5;
cnt += input / 1;
input = input % 1;
cout << cnt;
}
이정도로 적은 테스트케이스는 개인적으로 그냥 다 써버리는 것도 나쁘지 않다 생각합니다 ㅎㅎ..
'[백준] > C++' 카테고리의 다른 글
백준16396번 선 그리기 [C++] (0) | 2023.06.25 |
---|---|
백준 1316번 그룹 단어 체커 [C++] (0) | 2023.06.25 |
백준 11365번 !밀비 급일 [C++] (0) | 2023.06.25 |
백준 2865번 5와 6의 차이 [C++] (0) | 2023.06.25 |
백준 2667번 단지번호 붙이기 [C++] (0) | 2023.06.17 |