結果

問題 No.999 てん vs. ほむ
ユーザー takakintakakin
提出日時 2020-04-30 21:34:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 271 ms / 2,000 ms
コード長 285 bytes
コンパイル時間 418 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 32,432 KB
最終ジャッジ日時 2024-05-09 23:44:18
合計ジャッジ時間 5,528 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,496 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 29 ms
10,496 KB
testcase_03 AC 33 ms
10,496 KB
testcase_04 AC 28 ms
10,496 KB
testcase_05 AC 29 ms
10,496 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 30 ms
10,496 KB
testcase_08 AC 36 ms
11,264 KB
testcase_09 AC 253 ms
30,496 KB
testcase_10 AC 96 ms
16,292 KB
testcase_11 AC 71 ms
14,368 KB
testcase_12 AC 124 ms
19,300 KB
testcase_13 AC 271 ms
32,400 KB
testcase_14 AC 269 ms
32,408 KB
testcase_15 AC 268 ms
32,432 KB
testcase_16 AC 269 ms
32,404 KB
testcase_17 AC 244 ms
29,116 KB
testcase_18 AC 249 ms
28,688 KB
testcase_19 AC 247 ms
29,088 KB
testcase_20 AC 245 ms
29,156 KB
testcase_21 AC 255 ms
32,012 KB
testcase_22 AC 249 ms
31,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
n=int(input())
A=[int(i) for i in input().split()]
E,O=[0],[0]
for i in range(n):
  E.append(E[-1]+A[2*i])
  O.append(O[-1]+A[2*i+1])
eo=E[-1]
oo=O[-1]
ans=oo-eo
for i in range(n):
  ans=max(ans,oo-eo+2*E[i+1]-2*O[i+1])
print(ans)
0