結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 447 ms
36,772 KB
testcase_02 WA -
testcase_03 AC 267 ms
25,348 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 200 ms
21,456 KB
testcase_07 WA -
testcase_08 AC 93 ms
14,764 KB
testcase_09 AC 374 ms
31,548 KB
testcase_10 AC 617 ms
44,288 KB
testcase_11 AC 593 ms
44,232 KB
testcase_12 AC 603 ms
44,404 KB
testcase_13 WA -
testcase_14 AC 605 ms
44,284 KB
testcase_15 AC 600 ms
44,336 KB
testcase_16 AC 610 ms
44,408 KB
testcase_17 AC 596 ms
44,284 KB
testcase_18 AC 607 ms
44,284 KB
testcase_19 AC 592 ms
44,284 KB
testcase_20 WA -
testcase_21 AC 582 ms
43,500 KB
testcase_22 WA -
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=[[0,0]for _ in range(N)]
dp[0][0]=0
dp[0][1]=-A[0]
dp[1][1]=max(-A[0],-A[1])
dp[1][0]=max(-A[0],-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