結果

問題 No.999 てん vs. ほむ
ユーザー sho_00sho_00
提出日時 2020-04-09 09:02:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 289 ms / 2,000 ms
コード長 309 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,664 KB
最終ジャッジ日時 2024-07-21 06:55:08
合計ジャッジ時間 5,401 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 34 ms
10,752 KB
testcase_06 AC 32 ms
10,624 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 38 ms
11,520 KB
testcase_09 AC 255 ms
30,492 KB
testcase_10 AC 100 ms
16,672 KB
testcase_11 AC 75 ms
14,492 KB
testcase_12 AC 132 ms
19,424 KB
testcase_13 AC 280 ms
32,656 KB
testcase_14 AC 285 ms
32,652 KB
testcase_15 AC 289 ms
32,664 KB
testcase_16 AC 281 ms
32,524 KB
testcase_17 AC 259 ms
29,252 KB
testcase_18 AC 260 ms
28,828 KB
testcase_19 AC 257 ms
29,100 KB
testcase_20 AC 265 ms
29,288 KB
testcase_21 AC 274 ms
32,140 KB
testcase_22 AC 267 ms
31,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
odd=[0]
even=[0]
sum_a=0
for i in range(2*n):
  if i%2==0:
    odd.append(a[i]+odd[-1])
  else:
    even.append(a[i]+even[-1])
  sum_a+=a[i]
ans=0
sum_even=even[-1]
for i in range(n+1):
  score_A=odd[i]+sum_even-even[i]
  ans=max(ans,2*score_A-sum_a)
print(ans)
0