結果

問題 No.999 てん vs. ほむ
ユーザー takakintakakin
提出日時 2020-04-30 21:34:53
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 252 ms / 2,000 ms
コード長 285 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,532 KB
最終ジャッジ日時 2024-12-17 18:25:46
合計ジャッジ時間 5,226 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 26 ms
10,624 KB
testcase_06 AC 25 ms
10,624 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 33 ms
11,520 KB
testcase_09 AC 223 ms
30,496 KB
testcase_10 AC 86 ms
16,552 KB
testcase_11 AC 64 ms
14,752 KB
testcase_12 AC 112 ms
19,420 KB
testcase_13 AC 252 ms
32,528 KB
testcase_14 AC 248 ms
32,532 KB
testcase_15 AC 251 ms
32,532 KB
testcase_16 AC 246 ms
32,528 KB
testcase_17 AC 228 ms
29,112 KB
testcase_18 AC 221 ms
28,948 KB
testcase_19 AC 228 ms
29,088 KB
testcase_20 AC 232 ms
29,156 KB
testcase_21 AC 241 ms
32,144 KB
testcase_22 AC 241 ms
31,640 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