結果

問題 No.2854 -1 Subsequence
ユーザー ryuuichiryuuichi
提出日時 2024-08-25 14:58:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 263 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 56,264 KB
最終ジャッジ日時 2024-08-25 14:58:38
合計ジャッジ時間 15,487 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 502 ms
45,928 KB
testcase_02 WA -
testcase_03 AC 300 ms
29,936 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 208 ms
25,008 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 643 ms
56,092 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 677 ms
55,968 KB
testcase_16 AC 655 ms
56,216 KB
testcase_17 AC 682 ms
56,008 KB
testcase_18 AC 659 ms
56,264 KB
testcase_19 AC 683 ms
56,088 KB
testcase_20 WA -
testcase_21 AC 653 ms
53,668 KB
testcase_22 AC 633 ms
49,064 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
dp=[[-float("inf"),-float("inf")]for _ in range(N)]
dp[0][1]=-A[0]
dp[1][1]=-(min(A[0],A[1]))
for i in range(2,N):
    for j in range(2):
        dp[i][j]=max(dp[i-1][j],dp[i-1][j^1]+A[i]*(-1)**j)
print(max(dp[-1]))
0