結果

問題 No.2854 -1 Subsequence
ユーザー はるるんはるるん
提出日時 2024-08-25 14:10:01
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 381 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 106,472 KB
最終ジャッジ日時 2024-08-25 14:10:19
合計ジャッジ時間 5,085 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 102 ms
104,200 KB
testcase_02 WA -
testcase_03 AC 87 ms
96,620 KB
testcase_04 WA -
testcase_05 AC 92 ms
99,168 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 115 ms
102,020 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 116 ms
102,308 KB
testcase_14 WA -
testcase_15 AC 117 ms
102,296 KB
testcase_16 WA -
testcase_17 AC 116 ms
102,080 KB
testcase_18 WA -
testcase_19 AC 117 ms
102,088 KB
testcase_20 AC 113 ms
101,888 KB
testcase_21 WA -
testcase_22 AC 119 ms
100,836 KB
testcase_23 AC 36 ms
52,500 KB
testcase_24 AC 36 ms
53,004 KB
testcase_25 AC 35 ms
52,824 KB
testcase_26 AC 36 ms
52,640 KB
testcase_27 AC 36 ms
52,132 KB
testcase_28 AC 36 ms
53,116 KB
testcase_29 AC 37 ms
53,620 KB
testcase_30 AC 38 ms
52,420 KB
testcase_31 AC 36 ms
52,216 KB
testcase_32 AC 37 ms
52,004 KB
testcase_33 AC 36 ms
53,036 KB
testcase_34 AC 36 ms
53,780 KB
testcase_35 AC 36 ms
52,064 KB
testcase_36 AC 37 ms
54,104 KB
testcase_37 AC 36 ms
52,072 KB
testcase_38 AC 36 ms
52,252 KB
testcase_39 AC 37 ms
52,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int,input().split()))

dp = [[-1<<60,-1<<60] for i in range(n+1)]
dp[0][1] = 0

flag = False
for i in range(n):
	if dp[i+1][1] >= dp[i][0]+a[i]:
		flag = True
	if dp[i+1][1] >= dp[i][0]+a[i]:
		flag = True
	dp[i+1][1] = max(dp[i][1],dp[i][0]+a[i])
	dp[i+1][0] = max(dp[i][0],dp[i][1]-a[i])
	
if flag == False:
	print(-min(a))
else:
	print(max(dp[-1]))
0