結果

問題 No.999 てん vs. ほむ
ユーザー yomo3yomo3
提出日時 2020-03-07 03:53:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 240 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,636 KB
最終ジャッジ日時 2024-10-14 11:09:00
合計ジャッジ時間 2,838 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 28 ms
10,880 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 33 ms
10,624 KB
testcase_05 AC 27 ms
10,880 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 30 ms
11,520 KB
testcase_09 AC 120 ms
30,936 KB
testcase_10 AC 54 ms
16,528 KB
testcase_11 AC 47 ms
14,728 KB
testcase_12 AC 68 ms
19,672 KB
testcase_13 AC 127 ms
32,512 KB
testcase_14 AC 132 ms
32,588 KB
testcase_15 AC 130 ms
32,520 KB
testcase_16 AC 129 ms
32,636 KB
testcase_17 AC 117 ms
29,428 KB
testcase_18 AC 113 ms
29,112 KB
testcase_19 AC 118 ms
29,200 KB
testcase_20 AC 114 ms
29,264 KB
testcase_21 AC 120 ms
32,488 KB
testcase_22 AC 118 ms
31,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate

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

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

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