結果

問題 No.999 てん vs. ほむ
ユーザー ronpooronpoo
提出日時 2023-09-28 10:43:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 388 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 113,664 KB
最終ジャッジ日時 2024-07-21 05:23:48
合計ジャッジ時間 3,976 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,224 KB
testcase_01 AC 37 ms
52,068 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 38 ms
51,584 KB
testcase_04 AC 42 ms
52,224 KB
testcase_05 AC 39 ms
52,352 KB
testcase_06 AC 38 ms
51,968 KB
testcase_07 AC 37 ms
51,968 KB
testcase_08 AC 48 ms
62,336 KB
testcase_09 AC 97 ms
104,476 KB
testcase_10 AC 61 ms
78,592 KB
testcase_11 AC 55 ms
72,944 KB
testcase_12 AC 69 ms
86,016 KB
testcase_13 AC 114 ms
111,372 KB
testcase_14 AC 117 ms
111,544 KB
testcase_15 AC 114 ms
111,428 KB
testcase_16 AC 111 ms
111,680 KB
testcase_17 AC 96 ms
113,316 KB
testcase_18 AC 93 ms
112,000 KB
testcase_19 AC 97 ms
113,664 KB
testcase_20 AC 97 ms
113,664 KB
testcase_21 AC 113 ms
111,628 KB
testcase_22 AC 101 ms
107,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans = 0
odd = [0]
odd_r = [0]
sa = 0
for i in range(N):
    odd.append(odd[-1] + A[i*2])
    odd_r.append(odd_r[-1] + A[2*N-1-(i*2)])
    sa += A[2*i] + A[2*i+1]
odd_r.reverse()

ans = abs(odd[-1]-sa+odd[-1])
for i in range(N):
    a = odd[i+1] + odd_r[i+1]
    b = odd_r[i] + odd[i]    
    ans = max(ans, a-sa+a, b-sa+b)
print(ans)
0