結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,624 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 31 ms
10,624 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 36 ms
11,520 KB
testcase_09 AC 195 ms
31,352 KB
testcase_10 AC 81 ms
16,532 KB
testcase_11 AC 63 ms
15,512 KB
testcase_12 AC 102 ms
19,680 KB
testcase_13 AC 211 ms
33,392 KB
testcase_14 AC 211 ms
33,252 KB
testcase_15 AC 210 ms
33,132 KB
testcase_16 AC 213 ms
33,380 KB
testcase_17 AC 191 ms
29,388 KB
testcase_18 AC 189 ms
28,804 KB
testcase_19 AC 193 ms
29,200 KB
testcase_20 AC 191 ms
29,176 KB
testcase_21 AC 202 ms
32,616 KB
testcase_22 AC 201 ms
31,368 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 = -10**17
for i in range(N+1):
    homu = ae[i] - ae[0] + ao[N] - ao[i]
    ten = ao[i] - ao[0] + ae[N] - ae[i]
    s = homu - ten
    if s > ans: ans = s
print(ans)
0