結果

問題 No.2854 -1 Subsequence
ユーザー わんわん
提出日時 2024-09-01 14:08:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 264 bytes
コンパイル時間 455 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 34,808 KB
最終ジャッジ日時 2024-09-01 14:08:39
合計ジャッジ時間 13,522 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 412 ms
28,608 KB
testcase_01 AC 403 ms
28,372 KB
testcase_02 AC 447 ms
28,364 KB
testcase_03 AC 235 ms
20,196 KB
testcase_04 AC 459 ms
30,496 KB
testcase_05 AC 299 ms
23,804 KB
testcase_06 AC 209 ms
17,628 KB
testcase_07 AC 457 ms
30,552 KB
testcase_08 AC 88 ms
13,320 KB
testcase_09 AC 339 ms
25,128 KB
testcase_10 AC 538 ms
33,268 KB
testcase_11 AC 503 ms
33,396 KB
testcase_12 AC 556 ms
33,388 KB
testcase_13 AC 512 ms
33,400 KB
testcase_14 AC 516 ms
33,396 KB
testcase_15 AC 511 ms
33,400 KB
testcase_16 AC 500 ms
33,392 KB
testcase_17 AC 538 ms
33,400 KB
testcase_18 AC 517 ms
33,396 KB
testcase_19 AC 536 ms
33,400 KB
testcase_20 AC 500 ms
34,808 KB
testcase_21 AC 494 ms
33,380 KB
testcase_22 AC 529 ms
33,376 KB
testcase_23 AC 29 ms
10,752 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 29 ms
10,880 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 28 ms
10,880 KB
testcase_31 WA -
testcase_32 AC 29 ms
10,752 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 29 ms
10,880 KB
testcase_36 AC 28 ms
10,880 KB
testcase_37 WA -
testcase_38 AC 29 ms
10,880 KB
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
INF = float('inf')
s = [0, -INF, -INF, -INF]
for a in A:
  ns = s[:]
  ns[0] = max(s[0], s[2])
  ns[1] = max(s[1], s[3])
  ns[2] = max(s[1] + a, s[3] + a)
  ns[3] = max(s[0] - a, s[2] - a)
  s = ns
print(max(s))
0