結果

問題 No.999 てん vs. ほむ
ユーザー OhnumaOhnuma
提出日時 2020-04-07 14:56:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 287 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 64,352 KB
最終ジャッジ日時 2024-07-07 13:13:26
合計ジャッジ時間 17,482 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 535 ms
44,076 KB
testcase_01 AC 532 ms
44,072 KB
testcase_02 AC 532 ms
43,692 KB
testcase_03 AC 542 ms
44,204 KB
testcase_04 AC 536 ms
43,692 KB
testcase_05 AC 528 ms
43,692 KB
testcase_06 AC 543 ms
44,200 KB
testcase_07 AC 535 ms
43,820 KB
testcase_08 AC 543 ms
44,072 KB
testcase_09 AC 733 ms
62,316 KB
testcase_10 AC 588 ms
47,788 KB
testcase_11 AC 572 ms
46,124 KB
testcase_12 AC 632 ms
50,088 KB
testcase_13 AC 764 ms
64,216 KB
testcase_14 AC 766 ms
63,952 KB
testcase_15 AC 767 ms
64,352 KB
testcase_16 AC 764 ms
63,572 KB
testcase_17 WA -
testcase_18 AC 734 ms
58,812 KB
testcase_19 WA -
testcase_20 AC 745 ms
59,788 KB
testcase_21 AC 761 ms
63,448 KB
testcase_22 AC 757 ms
62,688 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
for i in range(n):
    h = cumL[i] + cumR[-1]-cumR[i]
    t = sumA - h
    ans = max(ans, h-t)
print(ans)
0