본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 32089번 部員の変遷

by 현장 2024. 7. 19.

-Code

while True:
    n = int(input())

    if n == 0:
        break

    a_list = list(map(int, input().split()))
    res = 0

    for i in range(n - 2):
        res = max(res, sum(a_list[i:i + 3]))

    print(res)