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 | 29 | 30 | 31 |
Tags
- Network
- misc
- C
- 써니나타스
- HackCTF
- 정렬
- wargame
- Incognito
- Database
- cryptography
- php
- Web Hacking
- 인코그니토
- 백준
- Forensics
- 사칙연산
- 그리디 알고리즘
- CTF
- Python
- Text
- 구현
- N0Named
- xcz.kr
- Digital Forensics
- writeup
- MySQL
- 수학
- 문자열
- SuNiNaTas
- Web
Archives
- Today
- Total
보안을 그리다, 훈이
[Baekjoon/Python3] 2720번 세탁소 사장 동혁 본문
[Baekjoon/Python3] 2720번 세탁소 사장 동혁
t = int(input())
for i in range(t):
give_dict = {25: 0, 10: 0, 5: 0, 1: 0}
cost = int(input())
for j in give_dict.keys():
give_dict[j] = cost // j
cost %= j
print(*give_dict.values())
t = int(input())
for i in range(t):
give_list = [0 for i in range(0, 4)]
cost = int(input())
while cost != 0:
if cost >= 25:
give_list[0] = cost // 25
cost %= 25
elif cost >= 10:
give_list[1] = cost // 10
cost %= 10
elif cost >= 5:
give_list[2] = cost // 5
cost %= 5
elif cost >= 1:
give_list[3] = cost // 1
cost %= 1
print(*give_list)
'Programming > Python & Data Structures' 카테고리의 다른 글
[Baekjoon/Python3/C] 2739번 구구단 (0) | 2020.12.04 |
---|---|
[Baekjoon/Python3] 2738번 행렬 덧셈 (0) | 2020.12.04 |
[Baekjoon/Python3] 2702번 초6 수학 (0) | 2020.12.04 |
[Baekjoon/Python3] 2675번 문자열 반복 (0) | 2020.12.04 |
[Baekjoon/Python3] 2609번 최대공약수와 최소공배수 (0) | 2020.12.04 |
Comments