목차

blobnom

ps
링크acmicpc.net/…
출처BOJ
문제 번호24498
문제명blobnom
레벨실버 4
분류

애드혹

시간복잡도O(n)
인풋사이즈n<=10^6
사용한 언어Python
제출기록156756KB / 664ms
최고기록664ms
해결날짜2022/02/28

풀이

코드

"""Solution code for "BOJ 24498. blobnom".

- Problem link: https://www.acmicpc.net/problem/24498
- Solution link: http://www.teferi.net/ps/problems/boj/24498

Tags: [Ad Hoc]
"""


def main():
    N = int(input())  # pylint: disable=unused-variable
    A = [int(x) for x in input().split()]

    answer = max((y + min(x, z) for x, y, z in zip(A, A[1:], A[2:])), default=0)
    answer = max(answer, A[0], A[-1])
    print(answer)


if __name__ == '__main__':
    main()