Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- magdiff
- 프로그래머스
- segmenation map generation
- Programmers
- 논문리뷰
- DP
- Vit
- diffusion
- 3d generation
- 네이버 부스트캠프 ai tech 6기
- diffusion model
- BOJ
- controllable video generation
- 3d editing
- image editing
- 코딩테스트
- video generation
- controlnext
- emerdiff
- VirtualTryON
- score distillation
- diffusion models
- video editing
- Python
- transformer
- visiontransformer
- segmentation map
- masactrl
- dreammotion
- 코테
Archives
- Today
- Total
목록BOJ #백준 #코테 #거스름돈 #14916 #python (1)
평범한 필기장
[BOJ_Python] 14916_거스름돈
https://www.acmicpc.net/problem/14916 14916번: 거스름돈 첫째 줄에 거스름돈 액수 n(1 ≤ n ≤ 100,000)이 주어진다. www.acmicpc.net 어떻게 풀었는가 거스름돈을 2원짜리와 5원짜리로 못 주기 때문에 거스름돈을 못주는 돈은 1원과 3원이다. 거스름돈 N이 5로 나누어지면 그 몫만큼 5원짜리 동전 개수를 추가해주고 나누어지지 않으면 2를 계속 뺴주면서 2원짜리 동전을 한개씩 추가해줬다. n = int(input()) if n == 1 or n == 3: print(-1) else: cnt = 0 while True: if n % 5 == 0: cnt += n // 5 print(cnt) break else: n = n - 2 cnt += 1 if n ..
코딩 테스트 준비/BOJ
2023. 3. 18. 17:07