結果

問題 No.2854 -1 Subsequence
ユーザー はるるんはるるん
提出日時 2024-08-25 14:09:01
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 380 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 106,532 KB
最終ジャッジ日時 2024-08-25 14:09:13
合計ジャッジ時間 4,654 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 98 ms
104,092 KB
testcase_02 WA -
testcase_03 AC 82 ms
96,308 KB
testcase_04 WA -
testcase_05 AC 92 ms
99,132 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 112 ms
102,092 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 110 ms
102,312 KB
testcase_14 WA -
testcase_15 AC 108 ms
102,144 KB
testcase_16 WA -
testcase_17 AC 109 ms
102,452 KB
testcase_18 WA -
testcase_19 AC 110 ms
102,452 KB
testcase_20 AC 107 ms
102,128 KB
testcase_21 WA -
testcase_22 AC 112 ms
100,484 KB
testcase_23 AC 36 ms
52,444 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 34 ms
52,740 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 36 ms
52,596 KB
testcase_31 WA -
testcase_32 AC 36 ms
53,052 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 34 ms
52,000 KB
testcase_36 AC 35 ms
52,604 KB
testcase_37 WA -
testcase_38 AC 33 ms
52,944 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][1] >= dp[i][0]+a[i]:
		flag = True
	if dp[i+1][1] >= 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(max(a))
else:
	print(max(dp[-1]))
0