結果

問題 No.2854 -1 Subsequence
ユーザー hiro1729hiro1729
提出日時 2024-08-25 13:39:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 737 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 103,000 KB
最終ジャッジ日時 2024-08-25 13:39:31
合計ジャッジ時間 4,725 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 92 ms
102,340 KB
testcase_02 WA -
testcase_03 AC 73 ms
89,988 KB
testcase_04 WA -
testcase_05 AC 78 ms
94,000 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 50 ms
71,464 KB
testcase_09 AC 83 ms
96,920 KB
testcase_10 AC 106 ms
100,876 KB
testcase_11 AC 125 ms
101,392 KB
testcase_12 AC 109 ms
100,748 KB
testcase_13 AC 105 ms
100,764 KB
testcase_14 AC 106 ms
101,260 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 104 ms
102,744 KB
testcase_21 WA -
testcase_22 AC 110 ms
103,000 KB
testcase_23 AC 39 ms
56,056 KB
testcase_24 AC 37 ms
54,192 KB
testcase_25 AC 38 ms
54,864 KB
testcase_26 AC 38 ms
54,052 KB
testcase_27 AC 38 ms
54,148 KB
testcase_28 AC 38 ms
54,088 KB
testcase_29 AC 40 ms
54,624 KB
testcase_30 AC 38 ms
55,720 KB
testcase_31 AC 38 ms
54,252 KB
testcase_32 AC 37 ms
55,236 KB
testcase_33 AC 39 ms
54,468 KB
testcase_34 AC 38 ms
54,984 KB
testcase_35 AC 37 ms
54,500 KB
testcase_36 AC 37 ms
54,620 KB
testcase_37 AC 38 ms
54,252 KB
testcase_38 AC 37 ms
54,580 KB
testcase_39 AC 41 ms
54,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# import pypyjit
# pypyjit.set_param('max_unroll_recursion=-1')
from collections import defaultdict as dd
S = input
R = range
P = print
def I(): return int(S())
def M(): return map(int, S().split())
def L(): return list(M())
def O(): return list(map(int, open(0).read().split()))
def yn(b): print("Yes" if b else "No")
biga = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
smaa = "abcdefghijklmnopqrstuvwxyz"
ctoi = lambda c: ord(c) - ord('a')
itoc = lambda i: chr(ord('a') + i)
inf = 10 ** 18
mod = 998244353
def acc(a):
	b = [0]
	for i in a:
		b.append(b[-1] + i)
	return b

n = I()
a = L()
dp = [-inf] * 2
dp[1] = -a[0]
for i in a[1:]:
	ndp = [-inf] * 2
	ndp[0] = max(dp[0], dp[1] + i)
	ndp[1] = max(dp[1], dp[0] - i)
	dp = ndp
P(max(-min(a), max(dp)))
0