結果

問題 No.2854 -1 Subsequence
ユーザー miya145592miya145592
提出日時 2024-08-25 13:54:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 336 ms / 2,000 ms
コード長 545 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 82,916 KB
実行使用メモリ 137,740 KB
最終ジャッジ日時 2024-08-25 13:54:39
合計ジャッジ時間 8,969 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 288 ms
117,864 KB
testcase_01 AC 254 ms
115,696 KB
testcase_02 AC 254 ms
117,316 KB
testcase_03 AC 157 ms
98,772 KB
testcase_04 AC 269 ms
122,540 KB
testcase_05 AC 224 ms
105,240 KB
testcase_06 AC 145 ms
92,880 KB
testcase_07 AC 264 ms
120,804 KB
testcase_08 AC 94 ms
82,836 KB
testcase_09 AC 199 ms
108,416 KB
testcase_10 AC 305 ms
137,216 KB
testcase_11 AC 308 ms
137,356 KB
testcase_12 AC 295 ms
137,216 KB
testcase_13 AC 293 ms
137,236 KB
testcase_14 AC 291 ms
137,212 KB
testcase_15 AC 323 ms
137,224 KB
testcase_16 AC 302 ms
137,740 KB
testcase_17 AC 294 ms
137,388 KB
testcase_18 AC 307 ms
137,464 KB
testcase_19 AC 336 ms
137,336 KB
testcase_20 AC 298 ms
137,180 KB
testcase_21 AC 306 ms
137,276 KB
testcase_22 AC 299 ms
137,656 KB
testcase_23 AC 42 ms
53,012 KB
testcase_24 AC 36 ms
52,636 KB
testcase_25 AC 36 ms
52,340 KB
testcase_26 AC 35 ms
52,516 KB
testcase_27 AC 35 ms
52,332 KB
testcase_28 AC 35 ms
52,464 KB
testcase_29 AC 36 ms
52,484 KB
testcase_30 AC 35 ms
52,372 KB
testcase_31 AC 37 ms
52,880 KB
testcase_32 AC 36 ms
51,884 KB
testcase_33 AC 35 ms
53,344 KB
testcase_34 AC 36 ms
52,592 KB
testcase_35 AC 35 ms
52,004 KB
testcase_36 AC 35 ms
53,908 KB
testcase_37 AC 37 ms
53,544 KB
testcase_38 AC 35 ms
53,932 KB
testcase_39 AC 35 ms
52,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N = int(input())
A = list(map(int, input().split()))
INF = 10**18
dp = [[[-INF for _ in range(2)] for _ in range(2)] for _ in range(N+1)]
dp[0][0][0] = 0
for i in range(N):
    for j in range(2):
        for k in range(2):
            if dp[i][j][k]==-INF:
                continue
            dp[i+1][j][k] = max(dp[i+1][j][k], dp[i][j][k])
            dp[i+1][1-j][1] = max(dp[i+1][1-j][1], dp[i][j][k] + A[i]*(-1 if j%2==0 else 1))
ans = -INF
for j in range(2):
    ans = max(ans, dp[N][j][1])
print(ans)
0