結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 80 ms
98,688 KB
testcase_02 WA -
testcase_03 AC 61 ms
81,224 KB
testcase_04 WA -
testcase_05 AC 68 ms
87,400 KB
testcase_06 AC 56 ms
75,412 KB
testcase_07 WA -
testcase_08 AC 48 ms
66,476 KB
testcase_09 AC 75 ms
91,372 KB
testcase_10 AC 103 ms
102,324 KB
testcase_11 AC 100 ms
102,140 KB
testcase_12 AC 102 ms
102,356 KB
testcase_13 AC 128 ms
102,076 KB
testcase_14 AC 102 ms
102,368 KB
testcase_15 AC 102 ms
102,184 KB
testcase_16 AC 102 ms
102,332 KB
testcase_17 AC 102 ms
102,140 KB
testcase_18 AC 101 ms
102,128 KB
testcase_19 AC 101 ms
102,384 KB
testcase_20 AC 97 ms
102,636 KB
testcase_21 AC 98 ms
101,912 KB
testcase_22 AC 102 ms
100,260 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()))
a,b = -min(A[0],A[1]),-A[0] + A[1]
for i in range(2,N):
  a,b = max(a,b - A[i]),max(b,a + A[i])
print(max(a,b))
0