結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
103,940 KB
testcase_01 AC 95 ms
104,296 KB
testcase_02 AC 95 ms
103,844 KB
testcase_03 AC 82 ms
96,412 KB
testcase_04 AC 100 ms
106,144 KB
testcase_05 AC 88 ms
98,904 KB
testcase_06 AC 64 ms
81,676 KB
testcase_07 AC 98 ms
106,248 KB
testcase_08 AC 51 ms
70,392 KB
testcase_09 AC 92 ms
100,596 KB
testcase_10 AC 111 ms
102,176 KB
testcase_11 AC 111 ms
102,292 KB
testcase_12 AC 111 ms
102,324 KB
testcase_13 AC 111 ms
102,352 KB
testcase_14 AC 111 ms
102,056 KB
testcase_15 AC 111 ms
102,368 KB
testcase_16 AC 112 ms
102,292 KB
testcase_17 AC 115 ms
102,384 KB
testcase_18 AC 112 ms
102,084 KB
testcase_19 AC 112 ms
102,172 KB
testcase_20 AC 113 ms
102,708 KB
testcase_21 AC 109 ms
102,032 KB
testcase_22 AC 114 ms
100,772 KB
testcase_23 AC 37 ms
53,204 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 36 ms
53,072 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 42 ms
52,340 KB
testcase_31 WA -
testcase_32 AC 36 ms
53,588 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 37 ms
52,068 KB
testcase_36 AC 37 ms
52,436 KB
testcase_37 WA -
testcase_38 AC 37 ms
53,216 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

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])

print(max(dp[-1]))
0