結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
100,896 KB
testcase_01 AC 89 ms
101,056 KB
testcase_02 AC 88 ms
100,912 KB
testcase_03 AC 73 ms
89,204 KB
testcase_04 AC 101 ms
99,420 KB
testcase_05 AC 80 ms
93,644 KB
testcase_06 AC 63 ms
82,308 KB
testcase_07 AC 104 ms
99,176 KB
testcase_08 AC 54 ms
70,792 KB
testcase_09 AC 86 ms
95,796 KB
testcase_10 AC 106 ms
99,212 KB
testcase_11 AC 106 ms
99,192 KB
testcase_12 AC 107 ms
99,060 KB
testcase_13 AC 107 ms
99,212 KB
testcase_14 AC 105 ms
99,084 KB
testcase_15 AC 111 ms
99,088 KB
testcase_16 AC 110 ms
99,188 KB
testcase_17 AC 104 ms
99,212 KB
testcase_18 AC 105 ms
99,348 KB
testcase_19 AC 106 ms
98,956 KB
testcase_20 AC 106 ms
101,076 KB
testcase_21 AC 106 ms
99,672 KB
testcase_22 AC 108 ms
100,936 KB
testcase_23 AC 41 ms
55,452 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 40 ms
55,472 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 41 ms
54,948 KB
testcase_31 WA -
testcase_32 AC 40 ms
54,264 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 40 ms
54,872 KB
testcase_36 AC 40 ms
55,004 KB
testcase_37 WA -
testcase_38 AC 39 ms
53,960 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(dp))
0