Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- gs25
- 더현대서울 맛집
- 캐치카페
- hackerrank
- ubuntu
- 금융문자분석경진대회
- 백준
- ChatGPT
- programmers
- github
- Docker
- 맥북
- 우분투
- PYTHON
- 코로나19
- Kaggle
- SW Expert Academy
- dacon
- Baekjoon
- Real or Not? NLP with Disaster Tweets
- 프로그래머스 파이썬
- 편스토랑
- 데이콘
- Git
- 자연어처리
- leetcode
- 프로그래머스
- 편스토랑 우승상품
- AI 경진대회
- 파이썬
Archives
- Today
- Total
솜씨좋은장씨
[BaeKJoon] 11047번: 동전 0 (Python) 본문
728x90
반응형
1일 1문제 53일차!
오늘의 문제는 동전 0 입니다.
첫번째 시도
N, K = map(int, input().split())
coins = []
for i in range(N):
coin = int(input())
coins.append(coin)
index = N - 1
count = 0
while K != 0:
if coins[index] <= K:
K = K - coins[index]
count = count + 1
elif coins[index] > K:
index = index - 1
print(count)
결과
두번째 시도
import sys
N, K = map(int, input().split())
coins = []
for i in range(N):
coin = int(sys.stdin.readline())
coins.append(coin)
index = N - 1
count = 0
while K != 0:
if coins[index] <= K:
K = K - coins[index]
count = count + 1
elif coins[index] > K:
index = index - 1
print(count)
input을 sys.stdin.readline()으로 변경하고 제출을 PyPy3로 변경하여 제출하였습니다.
결과
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 2133번 : 타일 채우기 (Python) (0) | 2020.04.01 |
---|---|
[BaeKJoon] 10610번: 30 (Python) (0) | 2020.03.31 |
[BaeKJoon] 11478번: 서로 다른 부분 문자열의 개수 (Python) (0) | 2020.03.29 |
[BaeKJoon] 2902번: KMP는 왜 KMP일까? (Python) (0) | 2020.03.28 |
[leetCode] 557. Reverse Words in a String III (Python) (0) | 2020.03.27 |
Comments