結果

問題 No.2854 -1 Subsequence
ユーザー Iroha_3856Iroha_3856
提出日時 2024-08-25 13:46:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 394 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,488 KB
実行使用メモリ 118,428 KB
最終ジャッジ日時 2024-08-25 13:47:03
合計ジャッジ時間 4,954 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
104,088 KB
testcase_01 AC 102 ms
104,088 KB
testcase_02 AC 98 ms
103,752 KB
testcase_03 AC 86 ms
96,372 KB
testcase_04 AC 118 ms
105,936 KB
testcase_05 AC 90 ms
98,840 KB
testcase_06 AC 72 ms
90,092 KB
testcase_07 AC 118 ms
106,164 KB
testcase_08 AC 52 ms
72,500 KB
testcase_09 AC 94 ms
100,476 KB
testcase_10 AC 140 ms
118,164 KB
testcase_11 AC 145 ms
118,040 KB
testcase_12 AC 141 ms
118,428 KB
testcase_13 AC 140 ms
117,816 KB
testcase_14 AC 138 ms
118,168 KB
testcase_15 AC 137 ms
117,776 KB
testcase_16 AC 136 ms
117,880 KB
testcase_17 AC 135 ms
117,900 KB
testcase_18 AC 138 ms
117,820 KB
testcase_19 AC 141 ms
118,280 KB
testcase_20 AC 136 ms
117,944 KB
testcase_21 AC 136 ms
117,900 KB
testcase_22 AC 139 ms
118,272 KB
testcase_23 AC 37 ms
52,404 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 35 ms
52,460 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 33 ms
52,320 KB
testcase_31 WA -
testcase_32 AC 32 ms
53,184 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 35 ms
52,208 KB
testcase_36 AC 34 ms
52,404 KB
testcase_37 WA -
testcase_38 AC 33 ms
52,224 KB
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
dp = [[-10**18, -10**18] for i in range(n+1)]
dp[0][0] = 0
for i in range(n):
	for j in range(2):
		if j == 0:
			#次はマイナス
			dp[i+1][1] = max(dp[i+1][1], dp[i][j] - A[i])
			dp[i+1][j] = max(dp[i+1][j], dp[i][j])
		else:
			dp[i+1][0] = max(dp[i+1][0], dp[i][j] + A[i])
			dp[i+1][j] = max(dp[i+1][j], dp[i][j])
print(max(dp[n]))
0