結果

問題 No.2854 -1 Subsequence
ユーザー hiro1729hiro1729
提出日時 2024-08-25 13:37:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 729 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 101,188 KB
最終ジャッジ日時 2024-08-25 13:38:08
合計ジャッジ時間 4,636 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
101,032 KB
testcase_01 AC 92 ms
101,188 KB
testcase_02 AC 96 ms
101,168 KB
testcase_03 AC 75 ms
88,984 KB
testcase_04 AC 101 ms
99,108 KB
testcase_05 AC 79 ms
93,168 KB
testcase_06 AC 63 ms
82,508 KB
testcase_07 AC 106 ms
99,384 KB
testcase_08 AC 51 ms
71,004 KB
testcase_09 AC 87 ms
95,628 KB
testcase_10 AC 107 ms
99,212 KB
testcase_11 AC 106 ms
99,472 KB
testcase_12 AC 109 ms
99,080 KB
testcase_13 AC 108 ms
99,328 KB
testcase_14 AC 109 ms
99,232 KB
testcase_15 AC 110 ms
99,220 KB
testcase_16 AC 111 ms
99,196 KB
testcase_17 AC 110 ms
99,352 KB
testcase_18 AC 112 ms
99,352 KB
testcase_19 AC 112 ms
99,092 KB
testcase_20 AC 106 ms
101,072 KB
testcase_21 AC 104 ms
99,640 KB
testcase_22 AC 110 ms
101,072 KB
testcase_23 AC 39 ms
54,116 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 39 ms
54,132 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 39 ms
53,888 KB
testcase_31 WA -
testcase_32 AC 39 ms
54,644 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 42 ms
54,316 KB
testcase_36 AC 38 ms
53,572 KB
testcase_37 WA -
testcase_38 AC 39 ms
54,176 KB
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

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[0] = 0
for i in a:
	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