結果

問題 No.2854 -1 Subsequence
ユーザー ああいいああいい
提出日時 2024-10-05 13:23:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 253 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 121,376 KB
最終ジャッジ日時 2024-10-05 13:23:58
合計ジャッジ時間 6,856 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 88 ms
104,064 KB
testcase_02 WA -
testcase_03 AC 78 ms
96,640 KB
testcase_04 WA -
testcase_05 AC 83 ms
99,328 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 49 ms
70,144 KB
testcase_09 AC 84 ms
100,732 KB
testcase_10 AC 155 ms
121,064 KB
testcase_11 AC 133 ms
121,072 KB
testcase_12 AC 134 ms
121,316 KB
testcase_13 AC 132 ms
121,116 KB
testcase_14 AC 135 ms
120,996 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 133 ms
121,092 KB
testcase_21 WA -
testcase_22 AC 141 ms
121,132 KB
testcase_23 AC 34 ms
51,712 KB
testcase_24 AC 33 ms
51,840 KB
testcase_25 AC 33 ms
51,840 KB
testcase_26 AC 33 ms
51,456 KB
testcase_27 AC 33 ms
51,840 KB
testcase_28 AC 33 ms
51,968 KB
testcase_29 AC 32 ms
52,096 KB
testcase_30 AC 31 ms
52,096 KB
testcase_31 AC 32 ms
51,968 KB
testcase_32 AC 32 ms
51,456 KB
testcase_33 AC 32 ms
51,712 KB
testcase_34 AC 33 ms
51,712 KB
testcase_35 AC 33 ms
51,712 KB
testcase_36 AC 33 ms
52,224 KB
testcase_37 AC 41 ms
52,096 KB
testcase_38 AC 33 ms
51,712 KB
testcase_39 AC 34 ms
51,712 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])
print(max(dp[-1]))
0