結果

問題 No.999 てん vs. ほむ
ユーザー OhnumaOhnuma
提出日時 2020-04-07 15:09:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 654 ms / 2,000 ms
コード長 328 bytes
コンパイル時間 111 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 64,340 KB
最終ジャッジ日時 2024-07-07 13:30:26
合計ジャッジ時間 15,641 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 467 ms
43,916 KB
testcase_01 AC 455 ms
44,072 KB
testcase_02 AC 462 ms
43,804 KB
testcase_03 AC 447 ms
43,940 KB
testcase_04 AC 453 ms
44,064 KB
testcase_05 AC 451 ms
43,680 KB
testcase_06 AC 443 ms
44,192 KB
testcase_07 AC 455 ms
44,316 KB
testcase_08 AC 455 ms
43,936 KB
testcase_09 AC 626 ms
61,800 KB
testcase_10 AC 499 ms
47,396 KB
testcase_11 AC 486 ms
45,720 KB
testcase_12 AC 527 ms
49,692 KB
testcase_13 AC 652 ms
64,340 KB
testcase_14 AC 649 ms
63,684 KB
testcase_15 AC 645 ms
63,688 KB
testcase_16 AC 654 ms
64,076 KB
testcase_17 AC 615 ms
59,752 KB
testcase_18 AC 617 ms
58,936 KB
testcase_19 AC 619 ms
59,212 KB
testcase_20 AC 626 ms
59,520 KB
testcase_21 AC 643 ms
63,292 KB
testcase_22 AC 652 ms
62,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
n = int(input())
A = list(map(int,input().split()))
L = [a for a in A[::2]]
R = [a for a in A[1::2]]
cumL = np.cumsum(L)
cumR = np.cumsum(R)
sumA = sum(A)
ans = 0
ans = max(cumL[-1], cumR[-1])*2 - sumA
for i in range(n):
    h = cumL[i] + cumR[-1] - cumR[i]
    t = sumA - h
    ans = max(ans, h-t)
print(ans)
0