結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 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 31 ms
10,624 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 34 ms
11,520 KB
testcase_09 AC 131 ms
30,940 KB
testcase_10 AC 59 ms
16,528 KB
testcase_11 AC 49 ms
14,856 KB
testcase_12 AC 74 ms
19,548 KB
testcase_13 AC 140 ms
32,512 KB
testcase_14 AC 142 ms
32,384 KB
testcase_15 AC 142 ms
32,516 KB
testcase_16 AC 142 ms
32,380 KB
testcase_17 AC 128 ms
29,264 KB
testcase_18 AC 126 ms
28,968 KB
testcase_19 AC 128 ms
29,068 KB
testcase_20 AC 129 ms
29,132 KB
testcase_21 AC 134 ms
32,612 KB
testcase_22 AC 132 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]))

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