[Python] BOJ 1912번. 연속합 작성일 2020-06-10 | In Algorithm | 1912번. 연속합 문제 링크 https://www.acmicpc.net/problem/1912 풀이 코드 12345678910# 1912번. 연속합 n = int(input()) nList = list(map(int, input().split())) sum = [nList[0]] for i in range(n-1): sum.append(max(sum[i]+nList[i+1], nList[i+1])) print(max(sum)) 비고