結果

問題 No.999 てん vs. ほむ
ユーザー maguchi_p_qmaguchi_p_q
提出日時 2020-02-28 21:34:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 212 ms / 2,000 ms
コード長 302 bytes
コンパイル時間 123 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,524 KB
最終ジャッジ日時 2024-10-13 16:59:21
合計ジャッジ時間 3,744 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,496 KB
testcase_01 AC 33 ms
10,624 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 28 ms
10,496 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 35 ms
11,392 KB
testcase_09 AC 193 ms
30,820 KB
testcase_10 AC 79 ms
16,536 KB
testcase_11 AC 61 ms
14,444 KB
testcase_12 AC 101 ms
19,548 KB
testcase_13 AC 209 ms
32,520 KB
testcase_14 AC 210 ms
32,524 KB
testcase_15 AC 209 ms
32,520 KB
testcase_16 AC 212 ms
32,516 KB
testcase_17 AC 186 ms
28,892 KB
testcase_18 AC 185 ms
28,708 KB
testcase_19 AC 187 ms
28,868 KB
testcase_20 AC 189 ms
29,028 KB
testcase_21 AC 180 ms
32,360 KB
testcase_22 AC 173 ms
31,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate

N = int(input())
A = [int(zz) for zz in input().split()]

A = [A[2*i]-A[2*i+1] for i in range(N)]

li_left = [0] + list(accumulate(A))
li_right = list(accumulate(A[::-1]))[::-1] + [0]

ans = 0
for i in range(N+1):
    ans = max(ans,li_left[i]-li_right[i])

print(ans)
0