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