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
- 코로나19
- Git
- ubuntu
- gs25
- AI 경진대회
- github
- ChatGPT
- SW Expert Academy
- 프로그래머스 파이썬
- 캐치카페
- 편스토랑
- 금융문자분석경진대회
- 맥북
- Baekjoon
- programmers
- 프로그래머스
- hackerrank
- 파이썬
- 편스토랑 우승상품
- 더현대서울 맛집
- dacon
- PYTHON
- leetcode
- 우분투
- Real or Not? NLP with Disaster Tweets
- Docker
- 데이콘
- 자연어처리
- 백준
- Kaggle
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 1912번 : 연속합 (Python) 본문
728x90
반응형
1일 1문제! 64일차!
오늘의 문제는 백준의 연속합입니다!
Solution
inputNum = int(input())
inputNums = input()
inputNums = inputNums.split()
inputNums = [int(num) for num in inputNums]
inputNums.insert(0, 0)
maxSum = []
maxSum.append(inputNums[0])
for i in range(1, inputNum+1):
maxSum.append(max(maxSum[i-1] + inputNums[i], inputNums[i]))
maxSum = maxSum[1:]
print(max(maxSum))
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 1264번 : 모음의 개수 (Python) (0) | 2020.04.12 |
---|---|
[Programmers] 해시 : 위장 (Python) (0) | 2020.04.11 |
[Programmers] 힙 : 디스크 컨트롤러 (Python) (0) | 2020.04.09 |
[BaekJoon] 9465번 : 스티커 (Python) (1) | 2020.04.08 |
[HackerRank] Minimum Absolute Difference in an Array (Python) (1) | 2020.04.07 |
Comments