結果

問題 No.2854 -1 Subsequence
ユーザー PNJPNJ
提出日時 2024-09-03 19:20:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 159 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 104,400 KB
最終ジャッジ日時 2024-09-03 19:20:42
合計ジャッジ時間 5,091 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
99,624 KB
testcase_01 AC 96 ms
98,548 KB
testcase_02 AC 82 ms
99,652 KB
testcase_03 AC 62 ms
81,364 KB
testcase_04 AC 88 ms
104,400 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 88 ms
104,304 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 100 ms
102,464 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 104 ms
100,332 KB
testcase_23 AC 36 ms
52,056 KB
testcase_24 AC 37 ms
53,348 KB
testcase_25 AC 36 ms
52,216 KB
testcase_26 AC 38 ms
52,240 KB
testcase_27 AC 36 ms
53,572 KB
testcase_28 AC 36 ms
53,384 KB
testcase_29 AC 37 ms
53,020 KB
testcase_30 AC 37 ms
53,500 KB
testcase_31 AC 36 ms
52,092 KB
testcase_32 AC 37 ms
52,124 KB
testcase_33 AC 36 ms
52,132 KB
testcase_34 AC 39 ms
52,612 KB
testcase_35 AC 38 ms
52,328 KB
testcase_36 AC 37 ms
52,492 KB
testcase_37 AC 38 ms
52,516 KB
testcase_38 AC 37 ms
52,212 KB
testcase_39 AC 37 ms
52,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
a,b = -A[0],-10000000000
for i in range(2,N):
  a,b = max(a,b - A[i],-A[i]),max(b,a + A[i])
print(max(a,b))
0