結果

問題 No.2854 -1 Subsequence
ユーザー ああいいああいい
提出日時 2024-10-05 13:25:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 265 bytes
コンパイル時間 132 ms
コンパイル使用メモリ 81,944 KB
実行使用メモリ 121,188 KB
最終ジャッジ日時 2024-10-05 13:25:10
合計ジャッジ時間 5,115 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
103,808 KB
testcase_01 AC 100 ms
104,064 KB
testcase_02 AC 91 ms
104,064 KB
testcase_03 AC 81 ms
96,556 KB
testcase_04 AC 93 ms
106,112 KB
testcase_05 AC 106 ms
98,856 KB
testcase_06 AC 73 ms
91,248 KB
testcase_07 AC 94 ms
106,240 KB
testcase_08 AC 48 ms
69,760 KB
testcase_09 AC 86 ms
100,480 KB
testcase_10 AC 144 ms
121,116 KB
testcase_11 AC 141 ms
120,824 KB
testcase_12 AC 137 ms
121,024 KB
testcase_13 AC 140 ms
121,096 KB
testcase_14 AC 139 ms
121,100 KB
testcase_15 AC 161 ms
120,832 KB
testcase_16 AC 136 ms
120,816 KB
testcase_17 AC 138 ms
121,016 KB
testcase_18 AC 143 ms
120,928 KB
testcase_19 AC 145 ms
120,980 KB
testcase_20 AC 143 ms
121,080 KB
testcase_21 AC 136 ms
121,024 KB
testcase_22 AC 142 ms
121,188 KB
testcase_23 AC 39 ms
51,712 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 35 ms
51,584 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 36 ms
51,840 KB
testcase_31 WA -
testcase_32 AC 37 ms
51,712 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 34 ms
51,456 KB
testcase_36 AC 33 ms
51,712 KB
testcase_37 WA -
testcase_38 AC 33 ms
51,456 KB
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
inf = 10 ** 20

dp = [[-inf] * 2 for _ in range(N)]
dp[0][1] = -A[0]
dp[0][0] = 0
for i in range(1,N):
	dp[i][0] = max(dp[i-1][0],dp[i-1][1] + A[i])
	dp[i][1] = max(dp[i-1][1],dp[i-1][0] - A[i])
print(max(dp[-1]))
0