結果

問題 No.999 てん vs. ほむ
ユーザー yomo3yomo3
提出日時 2020-03-07 03:45:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 226 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,648 KB
最終ジャッジ日時 2024-10-14 11:08:34
合計ジャッジ時間 2,934 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 28 ms
10,496 KB
testcase_04 AC 28 ms
10,880 KB
testcase_05 AC 28 ms
10,880 KB
testcase_06 AC 27 ms
10,624 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 29 ms
11,264 KB
testcase_09 AC 117 ms
30,608 KB
testcase_10 AC 56 ms
16,664 KB
testcase_11 AC 47 ms
14,864 KB
testcase_12 AC 69 ms
19,412 KB
testcase_13 AC 128 ms
32,644 KB
testcase_14 AC 126 ms
32,512 KB
testcase_15 AC 123 ms
32,648 KB
testcase_16 AC 127 ms
32,640 KB
testcase_17 WA -
testcase_18 AC 116 ms
28,928 KB
testcase_19 WA -
testcase_20 AC 114 ms
29,144 KB
testcase_21 AC 117 ms
32,252 KB
testcase_22 AC 119 ms
31,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate

N = int(input())
A = list(map(int, input().split()))

ae = list(accumulate(A[0::2]))
ao = list(accumulate(A[1::2]))

ans = ao[-1] - ae[-1] + 2 * max(ae[i] - ao[i] for i in range(N))
print(ans)
0