結果

問題 No.999 てん vs. ほむ
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2022-02-13 18:52:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 292 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 33,388 KB
最終ジャッジ日時 2024-06-29 05:45:06
合計ジャッジ時間 4,229 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 WA -
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 34 ms
11,520 KB
testcase_09 AC 173 ms
31,228 KB
testcase_10 AC 70 ms
16,548 KB
testcase_11 AC 56 ms
14,660 KB
testcase_12 AC 89 ms
19,676 KB
testcase_13 AC 185 ms
33,388 KB
testcase_14 AC 185 ms
33,136 KB
testcase_15 AC 184 ms
33,268 KB
testcase_16 AC 184 ms
33,384 KB
testcase_17 AC 161 ms
28,888 KB
testcase_18 WA -
testcase_19 AC 160 ms
29,080 KB
testcase_20 WA -
testcase_21 AC 154 ms
32,364 KB
testcase_22 AC 149 ms
31,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
from itertools import accumulate
L = list(accumulate([A[i] - A[i+1] for i in range(0,2*N,2) ], initial = 0))
R = list(accumulate([A[-1-i] - A[-2-i] for i in range(0,2*N,2)], initial = 0))
ans = max(L[i]+R[-1-i] for i in range(N))
print(ans)
0