結果

問題 No.2854 -1 Subsequence
ユーザー ntudantuda
提出日時 2024-08-30 23:52:51
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 317 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 104,684 KB
最終ジャッジ日時 2024-08-30 23:52:57
合計ジャッジ時間 5,109 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
101,740 KB
testcase_01 AC 85 ms
101,032 KB
testcase_02 AC 87 ms
101,520 KB
testcase_03 AC 70 ms
89,056 KB
testcase_04 AC 94 ms
104,684 KB
testcase_05 AC 77 ms
92,884 KB
testcase_06 AC 60 ms
82,104 KB
testcase_07 AC 91 ms
104,488 KB
testcase_08 AC 49 ms
69,368 KB
testcase_09 AC 78 ms
95,416 KB
testcase_10 AC 104 ms
102,184 KB
testcase_11 AC 103 ms
102,512 KB
testcase_12 AC 109 ms
102,512 KB
testcase_13 AC 105 ms
102,292 KB
testcase_14 AC 105 ms
102,144 KB
testcase_15 AC 105 ms
102,296 KB
testcase_16 AC 104 ms
102,196 KB
testcase_17 AC 104 ms
102,252 KB
testcase_18 AC 105 ms
102,052 KB
testcase_19 AC 109 ms
102,352 KB
testcase_20 AC 103 ms
102,348 KB
testcase_21 AC 106 ms
101,920 KB
testcase_22 AC 107 ms
100,620 KB
testcase_23 AC 35 ms
53,412 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 37 ms
52,932 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 36 ms
52,820 KB
testcase_31 WA -
testcase_32 AC 35 ms
52,932 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 36 ms
52,124 KB
testcase_36 AC 36 ms
52,560 KB
testcase_37 WA -
testcase_38 AC 35 ms
52,460 KB
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
dp = [-A[0], 0]
#  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