일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- python buildpacks
- 파이썬
- colab runtime
- 알고리즘
- flask
- Crawling
- clustering
- Python
- 셀레니움
- string to list
- geoDataFrame
- 크롤링
- Chat-GPT
- 2164 카드2
- convert to shp
- geopandas
- NLP
- to shp
- 백준
- Merge Repositories
- 혁신성장부문
- kmeans
- 플라스크
- Selenium
- 코랩 런타임
- 인스타그램
- 괄호 문제
- plotly dash
- 해시태그
- 웹페이지
Archives
- Today
- Total
코딩코딩코딩
백준(BAEKJOON) 2720 세탁소 거스름돈 - 파이썬(python) 본문
N = int(input())
q, d, n, p = 25, 10, 5, 1
for i in range(N):
c = int(input())
print(c//q, (c%q)//d, (c%q%d)//n, (c%q%d%n)//p, sep=' ')
# 동전을 달러 단위로 표현된 그대로 했더니 제출 시 틀렸다고 나옴
N = int(input())
q, d, n, p = 0.25, 0.1, 0.05, 0.01 # coins
for i in range(N):
c = int(input()) / 100 # cent to dollar
print(int(c // q), int(round((c % q), 2) // d), int(round((c % q % d), 2) // n), int(round((c % q % d % n), 2) // p), sep=' ')
'파이썬 > Algorithms' 카테고리의 다른 글
백준(BAEKJOON) 11399 ATM - 파이썬(python) (0) | 2021.09.14 |
---|---|
백준(BAEKJOON) 11034 캥거루 세마리2 - 파이썬(python) (0) | 2021.09.13 |
백준(BAEKJOON) 10162 전자레인지 - 파이썬(python) (0) | 2021.09.08 |
백준(BAEKJOON) 2839 설탕배달 - 파이썬(python) (0) | 2021.09.08 |
이코테 - 음료수 얼려먹기 [python] (0) | 2021.05.23 |
Comments