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
- 백준
- 데이콘
- ChatGPT
- Docker
- Real or Not? NLP with Disaster Tweets
- 코로나19
- 우분투
- Baekjoon
- dacon
- programmers
- gs25
- github
- 프로그래머스
- leetcode
- 편스토랑 우승상품
- 편스토랑
- 자연어처리
- Kaggle
- 파이썬
- hackerrank
- SW Expert Academy
- Git
- 맥북
- 금융문자분석경진대회
- ubuntu
- 프로그래머스 파이썬
- PYTHON
- AI 경진대회
- 캐치카페
- 더현대서울 맛집
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 11052번 : 카드 구매하기 (Python) 본문
728x90
반응형
1일 1문제 139일차!
139일차의 문제는 백준의 카드 구매하기 입니다.
Solution
cardNum = int(input())
NC = [0]*(cardNum+1)
cardPrice = [0]+list(map(int, input().split()))
def answer():
NC[0], NC[1] = 0, cardPrice[1]
for i in range(2, cardNum+1):
for j in range(1, i+1):
NC[i] = max(NC[i], NC[i-j]+cardPrice[j])
print(NC[cardNum])
answer()
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 11055번 : 가장 큰 증가 부분 수열 (Python) (0) | 2020.06.28 |
---|---|
[BaekJoon] 11054번 : 가장 긴 바이토닉 부분 수열 (Python) (0) | 2020.06.28 |
[leetCode] 169. Majority Element (Python) (0) | 2020.06.23 |
[leetCode] 507. Perfect Number (Python) (0) | 2020.06.22 |
[leetCode] 541. Reverse String II (Python) (0) | 2020.06.22 |
Comments