結果

問題 No.999 てん vs. ほむ
ユーザー brthyyjpbrthyyjp
提出日時 2020-03-28 18:52:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 369 bytes
コンパイル時間 1,083 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 116,448 KB
最終ジャッジ日時 2024-06-10 17:41:44
合計ジャッジ時間 3,198 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,432 KB
testcase_01 AC 35 ms
52,336 KB
testcase_02 AC 37 ms
52,204 KB
testcase_03 AC 37 ms
52,492 KB
testcase_04 AC 38 ms
52,936 KB
testcase_05 AC 36 ms
52,068 KB
testcase_06 AC 36 ms
53,504 KB
testcase_07 AC 38 ms
52,452 KB
testcase_08 AC 50 ms
64,696 KB
testcase_09 AC 102 ms
105,568 KB
testcase_10 AC 62 ms
79,772 KB
testcase_11 AC 57 ms
73,272 KB
testcase_12 AC 71 ms
89,208 KB
testcase_13 AC 115 ms
113,004 KB
testcase_14 AC 117 ms
112,624 KB
testcase_15 AC 118 ms
112,512 KB
testcase_16 AC 119 ms
112,832 KB
testcase_17 AC 101 ms
116,340 KB
testcase_18 AC 100 ms
114,244 KB
testcase_19 AC 102 ms
116,448 KB
testcase_20 AC 104 ms
115,960 KB
testcase_21 AC 117 ms
112,280 KB
testcase_22 AC 105 ms
109,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))

cL = [0]*(n+1)
cR = [0]*(n+1)

L = []
R = []
for i in range(2*n):
    if i%2 == 0:
        L.append(A[i])
    else:
        R.append(A[i])

R.reverse()
for i in range(n):
    cL[i+1] = cL[i]+L[i]
    cR[i+1] = cR[i]+R[i]

ans = 0
for i in range(n+1):
    j = n-i
    ans = max(ans, cL[i]+cR[j])
print(2*ans-sum(A))
0