結果

問題 No.2854 -1 Subsequence
ユーザー わんわん
提出日時 2024-09-01 14:10:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 264 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 104,312 KB
最終ジャッジ日時 2024-09-01 14:10:32
合計ジャッジ時間 5,576 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
101,308 KB
testcase_01 AC 92 ms
101,112 KB
testcase_02 AC 93 ms
101,216 KB
testcase_03 AC 73 ms
88,616 KB
testcase_04 AC 97 ms
104,176 KB
testcase_05 AC 79 ms
93,400 KB
testcase_06 AC 67 ms
84,392 KB
testcase_07 AC 97 ms
104,312 KB
testcase_08 AC 51 ms
70,304 KB
testcase_09 AC 84 ms
95,076 KB
testcase_10 AC 115 ms
102,488 KB
testcase_11 AC 111 ms
102,084 KB
testcase_12 AC 112 ms
102,384 KB
testcase_13 AC 111 ms
102,116 KB
testcase_14 AC 112 ms
102,088 KB
testcase_15 AC 111 ms
102,352 KB
testcase_16 AC 112 ms
102,052 KB
testcase_17 AC 113 ms
102,316 KB
testcase_18 AC 115 ms
102,464 KB
testcase_19 AC 112 ms
102,396 KB
testcase_20 AC 113 ms
102,944 KB
testcase_21 AC 106 ms
102,016 KB
testcase_22 AC 114 ms
100,492 KB
testcase_23 AC 35 ms
52,676 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 36 ms
52,348 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 36 ms
52,724 KB
testcase_31 WA -
testcase_32 AC 37 ms
52,356 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 35 ms
53,912 KB
testcase_36 AC 36 ms
52,768 KB
testcase_37 WA -
testcase_38 AC 36 ms
52,872 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