일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 일상탈출
- ㅇ
- 보안
- IMPLEMENT
- 취약점
- bytecode
- 보안취약점
- 버킷리스트
- opcode
- bytecode 분석
- abstract
- 심리여행
- Shared Elements
- 여행계획
- jvm
- 일상회피
- Interface
- static
- HelloWorld
- Transition
- Navigation Component
- 여행
- javap
- throws
- extends
- Recylcer
- 치유
- 회피
- 심리학
- Android
Archives
- Today
- Total
패스트터틀
(Baekjoon) GreedyAlgorithm - (4) 거스름돈 본문
https://www.acmicpc.net/problem/5585
GreedyAlgorithm (2) 동전 0 과 동일한 문제이다.
package GreedyAlgorithm;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
import java.util.*;
public class _5585{
public static void main(String[] args) {
try{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int pay = Integer.parseInt(br.readLine());
pay = 1000 - pay;
int coin[] = new int[]{500,100,50,10,5,1};
int i = 0;
int count = 0;
while(pay != 0){
if(pay >= coin[i]){
count++;
pay -= coin[i];
continue;
}
i++;
}
System.out.println(count);
} catch(IOException e){
e.printStackTrace();
}
}
}
백준문제풀이Github :
https://github.com/sdk0213/baekjoon-study
'Algorithm > baekjoon' 카테고리의 다른 글
(Baekjoon) GreedyAlgorithm - (6) 30 (0) | 2019.11.07 |
---|---|
(Baekjoon) GreedyAlgorithm - (5) 로프 (0) | 2019.11.06 |
(Baekjoon) GreedyAlgorithm - (3) 회의실배정 (0) | 2019.11.05 |
(Baekjoon) GreedyAlgorithm - (2) 동전 0 (0) | 2019.11.04 |
(Baekjoon) GreedyAlgorithm - (1) ATM (0) | 2019.11.04 |
Comments