結果

問題 No.2854 -1 Subsequence
ユーザー titiatitia
提出日時 2024-09-01 01:28:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 184 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 33,364 KB
最終ジャッジ日時 2024-09-01 01:28:53
合計ジャッジ時間 10,933 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 260 ms
28,456 KB
testcase_01 AC 253 ms
27,628 KB
testcase_02 AC 257 ms
28,368 KB
testcase_03 AC 174 ms
20,196 KB
testcase_04 AC 284 ms
30,888 KB
testcase_05 AC 192 ms
23,064 KB
testcase_06 AC 122 ms
17,764 KB
testcase_07 AC 285 ms
29,816 KB
testcase_08 AC 62 ms
13,448 KB
testcase_09 AC 230 ms
24,672 KB
testcase_10 AC 315 ms
33,136 KB
testcase_11 AC 316 ms
33,136 KB
testcase_12 AC 311 ms
33,032 KB
testcase_13 AC 329 ms
33,140 KB
testcase_14 AC 311 ms
33,140 KB
testcase_15 AC 309 ms
33,264 KB
testcase_16 AC 314 ms
33,140 KB
testcase_17 AC 322 ms
33,136 KB
testcase_18 AC 316 ms
33,260 KB
testcase_19 AC 316 ms
33,140 KB
testcase_20 AC 334 ms
33,364 KB
testcase_21 AC 317 ms
32,636 KB
testcase_22 AC 315 ms
33,360 KB
testcase_23 AC 28 ms
10,752 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 29 ms
10,624 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 29 ms
10,752 KB
testcase_31 WA -
testcase_32 AC 27 ms
10,624 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 28 ms
10,624 KB
testcase_36 AC 29 ms
10,624 KB
testcase_37 WA -
testcase_38 AC 28 ms
10,752 KB
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

DP=[0,-1<<60]

for a in A:
    NDP=[0,-1<<60]

    NDP[0]=max(DP[0],DP[1]+a)
    NDP[1]=max(DP[1],DP[0]-a)

    DP=NDP

print(max(DP))
0