結果

問題 No.2854 -1 Subsequence
ユーザー はるるんはるるん
提出日時 2024-08-25 14:11:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 376 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 118,280 KB
最終ジャッジ日時 2024-08-25 14:12:03
合計ジャッジ時間 5,028 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
103,624 KB
testcase_01 AC 107 ms
104,112 KB
testcase_02 AC 109 ms
103,868 KB
testcase_03 AC 93 ms
96,348 KB
testcase_04 AC 110 ms
105,720 KB
testcase_05 AC 107 ms
99,064 KB
testcase_06 AC 84 ms
90,704 KB
testcase_07 AC 109 ms
106,060 KB
testcase_08 AC 62 ms
74,748 KB
testcase_09 AC 101 ms
100,416 KB
testcase_10 AC 121 ms
102,492 KB
testcase_11 AC 119 ms
102,300 KB
testcase_12 AC 148 ms
118,160 KB
testcase_13 AC 147 ms
118,240 KB
testcase_14 AC 146 ms
118,280 KB
testcase_15 AC 122 ms
102,356 KB
testcase_16 AC 148 ms
117,900 KB
testcase_17 AC 120 ms
102,088 KB
testcase_18 AC 118 ms
102,412 KB
testcase_19 AC 149 ms
118,072 KB
testcase_20 AC 111 ms
102,304 KB
testcase_21 AC 113 ms
102,136 KB
testcase_22 AC 151 ms
118,020 KB
testcase_23 AC 35 ms
52,980 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 36 ms
52,956 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 36 ms
52,744 KB
testcase_31 WA -
testcase_32 AC 36 ms
52,496 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 37 ms
52,276 KB
testcase_36 AC 37 ms
52,612 KB
testcase_37 WA -
testcase_38 AC 37 ms
53,536 KB
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

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] <= dp[i][0]+a[i]:
		flag = True
	if dp[i][0] <= 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