結果

問題 No.2854 -1 Subsequence
ユーザー ああいいああいい
提出日時 2024-10-05 13:25:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 172 ms / 2,000 ms
コード長 285 bytes
コンパイル時間 129 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 121,448 KB
最終ジャッジ日時 2024-10-05 13:26:03
合計ジャッジ時間 5,269 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
103,936 KB
testcase_01 AC 98 ms
104,016 KB
testcase_02 AC 97 ms
104,004 KB
testcase_03 AC 85 ms
96,636 KB
testcase_04 AC 98 ms
106,176 KB
testcase_05 AC 89 ms
99,104 KB
testcase_06 AC 76 ms
91,020 KB
testcase_07 AC 98 ms
106,424 KB
testcase_08 AC 50 ms
71,136 KB
testcase_09 AC 111 ms
100,476 KB
testcase_10 AC 141 ms
120,980 KB
testcase_11 AC 143 ms
120,972 KB
testcase_12 AC 143 ms
121,012 KB
testcase_13 AC 144 ms
121,108 KB
testcase_14 AC 147 ms
120,864 KB
testcase_15 AC 146 ms
120,856 KB
testcase_16 AC 147 ms
120,980 KB
testcase_17 AC 143 ms
120,968 KB
testcase_18 AC 143 ms
120,992 KB
testcase_19 AC 144 ms
120,988 KB
testcase_20 AC 149 ms
121,448 KB
testcase_21 AC 172 ms
120,916 KB
testcase_22 AC 172 ms
120,904 KB
testcase_23 AC 34 ms
52,400 KB
testcase_24 AC 34 ms
53,432 KB
testcase_25 AC 33 ms
52,704 KB
testcase_26 AC 33 ms
52,332 KB
testcase_27 AC 32 ms
52,156 KB
testcase_28 AC 32 ms
53,384 KB
testcase_29 AC 33 ms
52,700 KB
testcase_30 AC 33 ms
52,776 KB
testcase_31 AC 35 ms
52,184 KB
testcase_32 AC 33 ms
52,988 KB
testcase_33 AC 35 ms
52,184 KB
testcase_34 AC 34 ms
52,788 KB
testcase_35 AC 34 ms
52,704 KB
testcase_36 AC 32 ms
52,528 KB
testcase_37 AC 34 ms
53,596 KB
testcase_38 AC 33 ms
52,580 KB
testcase_39 AC 31 ms
52,212 KB
権限があれば一括ダウンロードができます

ソースコード

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]

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])
	dp[i][1] = max(dp[i][1],-A[i])
print(max(dp[-1]))
0