結果

問題 No.999 てん vs. ほむ
ユーザー FromBooskaFromBooska
提出日時 2023-04-21 11:13:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 898 bytes
コンパイル時間 639 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 124,196 KB
最終ジャッジ日時 2024-11-06 07:37:55
合計ジャッジ時間 3,902 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,400 KB
testcase_01 AC 39 ms
52,956 KB
testcase_02 AC 35 ms
52,408 KB
testcase_03 AC 37 ms
53,696 KB
testcase_04 AC 39 ms
52,640 KB
testcase_05 AC 37 ms
52,492 KB
testcase_06 AC 36 ms
52,860 KB
testcase_07 AC 36 ms
52,976 KB
testcase_08 AC 53 ms
65,064 KB
testcase_09 AC 110 ms
104,368 KB
testcase_10 AC 65 ms
82,992 KB
testcase_11 AC 60 ms
76,648 KB
testcase_12 AC 71 ms
93,288 KB
testcase_13 AC 120 ms
124,196 KB
testcase_14 AC 120 ms
123,596 KB
testcase_15 AC 120 ms
123,820 KB
testcase_16 AC 118 ms
123,824 KB
testcase_17 AC 97 ms
114,200 KB
testcase_18 AC 97 ms
113,372 KB
testcase_19 AC 97 ms
114,220 KB
testcase_20 AC 99 ms
113,860 KB
testcase_21 AC 119 ms
123,940 KB
testcase_22 AC 109 ms
107,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 区間dpだと間に合わない、左右からの累積和で解ける
# 左からのネット得点累積和、右からのネット得点累積和
# どこまで左、どこまで右なら最大値となるか

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

from_left = []
for i in range(N):
    calc = A[i*2]-A[i*2+1]
    from_left.append(calc)
from_left_cumu = [0]
temp = 0
for i in range(N):
    temp += from_left[i]
    from_left_cumu.append(temp)
    
#print(from_left)
#print(from_left_cumu)

from_right = []
for i in range(N):
    calc = A[N*2-i*2-1]-A[N*2-i*2-2]
    from_right.append(calc)
from_right_cumu = [0]
temp = 0
for i in range(N):
    temp += from_right[i]
    from_right_cumu.append(temp)
from_right_cumu.reverse()
    
#print(from_right)
#print(from_right_cumu)

ans = -10**20
for i in range(N+1):
    ans = max(ans, from_left_cumu[i]+from_right_cumu[i])
print(ans)
0