일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- expo
- 최소공배수
- 11053
- 파이썬
- 코틀린
- Combination
- 괄호
- Python
- lcm
- 순열
- 1260
- 코테
- 안드로이드
- 매일11시
- 11054
- Kotlin
- 11057
- permutation
- LCS
- 홈화면
- Android
- 1182
- 나머지
- 앱
- 백준
- 11기
- 9095
- itertools
- 뒤로가기
- 6603
Archives
- Today
- Total
목록백준 5585 python (1)
황소개발자
백준 5585 파이썬 python 거스름돈
1 2 3 4 5 6 7 8 9 10 11 12 price = int(input()) change = 1000 - price arr = [500, 100, 50, 10, 5, 1] count = 0 for i in arr: count += change // i change = change % i print(count) http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs 몫을 더해주고, 다음 for문으로 넘기기전에 나머지를 던져준다. 여기서 탐욕은 큰 동전부터 고려하는 것이다.
백준 문제 풀이
2019. 10. 29. 21:00