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 |
Tags
- 금융문자분석경진대회
- leetcode
- Baekjoon
- gs25
- 더현대서울 맛집
- ubuntu
- PYTHON
- 편스토랑 우승상품
- Git
- 캐치카페
- 데이콘
- AI 경진대회
- SW Expert Academy
- 맥북
- 코로나19
- 자연어처리
- programmers
- 우분투
- github
- hackerrank
- ChatGPT
- Docker
- dacon
- 편스토랑
- 프로그래머스
- Kaggle
- Real or Not? NLP with Disaster Tweets
- 파이썬
- 백준
- 프로그래머스 파이썬
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