結果

問題 No.2854 -1 Subsequence
ユーザー はるるんはるるん
提出日時 2024-08-25 14:36:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 396 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 106,296 KB
最終ジャッジ日時 2024-08-25 14:36:37
合計ジャッジ時間 5,239 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
103,824 KB
testcase_01 AC 98 ms
104,008 KB
testcase_02 AC 99 ms
104,180 KB
testcase_03 AC 87 ms
96,480 KB
testcase_04 AC 133 ms
106,024 KB
testcase_05 AC 92 ms
99,040 KB
testcase_06 AC 65 ms
83,132 KB
testcase_07 AC 102 ms
106,296 KB
testcase_08 AC 54 ms
69,340 KB
testcase_09 AC 93 ms
100,536 KB
testcase_10 AC 116 ms
102,196 KB
testcase_11 AC 114 ms
102,356 KB
testcase_12 AC 114 ms
102,380 KB
testcase_13 AC 116 ms
102,084 KB
testcase_14 AC 119 ms
102,184 KB
testcase_15 AC 118 ms
102,076 KB
testcase_16 AC 115 ms
102,260 KB
testcase_17 AC 114 ms
102,268 KB
testcase_18 AC 114 ms
102,024 KB
testcase_19 AC 115 ms
102,128 KB
testcase_20 AC 113 ms
101,988 KB
testcase_21 AC 113 ms
102,196 KB
testcase_22 AC 118 ms
101,240 KB
testcase_23 AC 38 ms
53,208 KB
testcase_24 AC 38 ms
54,080 KB
testcase_25 AC 39 ms
52,520 KB
testcase_26 AC 42 ms
53,148 KB
testcase_27 AC 38 ms
51,820 KB
testcase_28 AC 38 ms
53,336 KB
testcase_29 AC 39 ms
52,828 KB
testcase_30 AC 38 ms
52,816 KB
testcase_31 AC 38 ms
52,572 KB
testcase_32 AC 40 ms
52,196 KB
testcase_33 AC 38 ms
52,684 KB
testcase_34 AC 38 ms
53,080 KB
testcase_35 AC 38 ms
52,688 KB
testcase_36 AC 37 ms
52,632 KB
testcase_37 AC 38 ms
52,744 KB
testcase_38 AC 37 ms
53,396 KB
testcase_39 AC 39 ms
52,496 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

for i in range(n):
	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])

pre = 1<<60
flag = False
for i in range(n):
	if pre >= a[i]:
		pre = a[i]
	else:
		flag = True
		break

if pre <= 0:
	flag = True


if flag:
	print(max(dp[-1]))
else:
	print(-min(a))
0