結果

問題 No.999 てん vs. ほむ
ユーザー hedwig100hedwig100
提出日時 2020-04-06 18:02:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 183 ms / 2,000 ms
コード長 556 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,688 KB
最終ジャッジ日時 2024-07-06 14:45:59
合計ジャッジ時間 4,470 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 28 ms
10,880 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 26 ms
10,752 KB
testcase_06 AC 27 ms
10,880 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 32 ms
11,520 KB
testcase_09 AC 173 ms
30,648 KB
testcase_10 AC 69 ms
16,704 KB
testcase_11 AC 55 ms
14,748 KB
testcase_12 AC 93 ms
19,720 KB
testcase_13 AC 180 ms
32,684 KB
testcase_14 AC 180 ms
32,660 KB
testcase_15 AC 183 ms
32,688 KB
testcase_16 AC 183 ms
32,680 KB
testcase_17 AC 163 ms
29,188 KB
testcase_18 AC 162 ms
28,984 KB
testcase_19 AC 163 ms
29,256 KB
testcase_20 AC 165 ms
29,320 KB
testcase_21 AC 175 ms
32,660 KB
testcase_22 AC 170 ms
31,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7
INF = 10 ** 10
import sys
sys.setrecursionlimit(100000000)
dy = (-1,0,1,0)
dx = (0,1,0,-1)

def main():
    n = int(input())
    a = list(map(int,input().split()))
    tot = sum(a)

    cuml = [0] * (n + 1)
    cumr = [0] * (n + 1)

    for i in range(n):
        cuml[i + 1] = cuml[i] + a[2 * i]
    
    for i in range(n - 1,-1,-1):
        cumr[i] = cumr[i + 1] + a[2 * i + 1]
    
    ans = 0
    for i in range(n + 1):
        ans = max(ans,2 * cuml[i] + 2 * cumr[i] - tot)
    
    print(ans)

if __name__ =='__main__':
    main()  
0