結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 496 ms
45,680 KB
testcase_02 WA -
testcase_03 AC 315 ms
29,936 KB
testcase_04 WA -
testcase_05 AC 397 ms
36,580 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 94 ms
16,016 KB
testcase_09 AC 433 ms
39,196 KB
testcase_10 AC 632 ms
55,956 KB
testcase_11 AC 668 ms
55,956 KB
testcase_12 AC 623 ms
56,000 KB
testcase_13 AC 677 ms
56,140 KB
testcase_14 AC 636 ms
56,004 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 635 ms
55,120 KB
testcase_21 WA -
testcase_22 AC 632 ms
49,140 KB
testcase_23 AC 27 ms
10,624 KB
testcase_24 AC 27 ms
10,624 KB
testcase_25 AC 27 ms
10,752 KB
testcase_26 AC 26 ms
10,752 KB
testcase_27 AC 27 ms
10,752 KB
testcase_28 AC 25 ms
10,752 KB
testcase_29 AC 27 ms
10,752 KB
testcase_30 AC 27 ms
10,752 KB
testcase_31 AC 30 ms
10,880 KB
testcase_32 AC 26 ms
10,624 KB
testcase_33 AC 26 ms
10,624 KB
testcase_34 AC 25 ms
10,880 KB
testcase_35 AC 28 ms
10,752 KB
testcase_36 AC 26 ms
10,880 KB
testcase_37 AC 27 ms
10,624 KB
testcase_38 AC 27 ms
10,752 KB
testcase_39 AC 26 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
dp=[[-float("inf"),-float("inf")]for _ in range(N)]
dp[0][1]=-A[0]
for i in range(1,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