結果

問題 No.2854 -1 Subsequence
ユーザー PNJPNJ
提出日時 2024-09-03 19:24:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 233 bytes
コンパイル時間 382 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 105,600 KB
最終ジャッジ日時 2024-09-03 19:24:25
合計ジャッジ時間 5,193 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
102,400 KB
testcase_01 AC 80 ms
100,428 KB
testcase_02 AC 87 ms
101,448 KB
testcase_03 AC 63 ms
83,572 KB
testcase_04 AC 88 ms
105,536 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 87 ms
105,600 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 99 ms
102,444 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,676 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
D = [A[i + 1] - A[i] for i in range(N - 1)]
ans = max(D)
if ans < 0:
  print(ans)
  exit()
a,b = -A[0],0
for i in range(2,N):
  a,b = max(a,b - A[i]),max(b,a + A[i])
print(max(a,b))
0