結果

問題 No.2854 -1 Subsequence
ユーザー ntudantuda
提出日時 2024-08-31 11:48:20
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 335 bytes
コンパイル時間 388 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 105,040 KB
最終ジャッジ日時 2024-08-31 11:48:25
合計ジャッジ時間 5,123 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 86 ms
101,112 KB
testcase_02 WA -
testcase_03 AC 74 ms
88,816 KB
testcase_04 WA -
testcase_05 AC 76 ms
93,012 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 49 ms
69,536 KB
testcase_09 AC 78 ms
95,256 KB
testcase_10 AC 104 ms
102,376 KB
testcase_11 AC 105 ms
102,500 KB
testcase_12 AC 103 ms
102,140 KB
testcase_13 AC 104 ms
102,240 KB
testcase_14 AC 105 ms
102,316 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 103 ms
102,812 KB
testcase_21 WA -
testcase_22 AC 108 ms
100,412 KB
testcase_23 AC 35 ms
52,456 KB
testcase_24 AC 33 ms
52,208 KB
testcase_25 AC 36 ms
53,420 KB
testcase_26 AC 35 ms
52,488 KB
testcase_27 AC 35 ms
52,268 KB
testcase_28 AC 34 ms
52,996 KB
testcase_29 AC 39 ms
52,976 KB
testcase_30 AC 39 ms
52,408 KB
testcase_31 AC 36 ms
51,820 KB
testcase_32 AC 36 ms
52,688 KB
testcase_33 AC 36 ms
52,688 KB
testcase_34 AC 35 ms
52,724 KB
testcase_35 AC 36 ms
53,184 KB
testcase_36 AC 35 ms
52,068 KB
testcase_37 AC 36 ms
52,484 KB
testcase_38 AC 36 ms
52,032 KB
testcase_39 AC 36 ms
52,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
INF = 10 ** 10
dp = [-A[0], -INF]
#  dp[i]:= i=0 前回値変更したのが奇数、i=1 前回値変更したのが偶数 の最大値
for i in range(1, N):
    dp2 = dp[:]
    dp2[0] = max(dp2[0], dp[1] - A[i])
    dp2[1] = max(dp2[1], dp[0] + A[i])
    dp = dp2
print(max(dp))
0