結果

問題 No.2854 -1 Subsequence
ユーザー prd_xxxprd_xxx
提出日時 2024-08-25 13:46:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 262 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,848 KB
実行使用メモリ 104,648 KB
最終ジャッジ日時 2024-08-25 13:46:58
合計ジャッジ時間 4,356 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
99,408 KB
testcase_01 AC 83 ms
98,908 KB
testcase_02 AC 78 ms
98,900 KB
testcase_03 AC 61 ms
82,420 KB
testcase_04 AC 87 ms
104,648 KB
testcase_05 AC 68 ms
87,384 KB
testcase_06 AC 55 ms
74,868 KB
testcase_07 AC 88 ms
104,284 KB
testcase_08 AC 45 ms
67,084 KB
testcase_09 AC 70 ms
91,584 KB
testcase_10 AC 113 ms
102,296 KB
testcase_11 AC 97 ms
102,264 KB
testcase_12 AC 97 ms
102,060 KB
testcase_13 AC 97 ms
102,400 KB
testcase_14 AC 97 ms
102,392 KB
testcase_15 AC 98 ms
102,420 KB
testcase_16 AC 99 ms
102,356 KB
testcase_17 AC 100 ms
102,124 KB
testcase_18 AC 97 ms
102,336 KB
testcase_19 AC 99 ms
102,060 KB
testcase_20 AC 100 ms
102,160 KB
testcase_21 WA -
testcase_22 AC 102 ms
100,388 KB
testcase_23 AC 36 ms
51,944 KB
testcase_24 AC 36 ms
52,208 KB
testcase_25 AC 35 ms
53,020 KB
testcase_26 AC 38 ms
52,684 KB
testcase_27 AC 37 ms
52,532 KB
testcase_28 AC 34 ms
53,688 KB
testcase_29 AC 36 ms
52,764 KB
testcase_30 AC 34 ms
52,344 KB
testcase_31 AC 38 ms
52,212 KB
testcase_32 AC 35 ms
52,400 KB
testcase_33 AC 35 ms
53,428 KB
testcase_34 AC 36 ms
53,248 KB
testcase_35 AC 36 ms
52,540 KB
testcase_36 AC 40 ms
52,368 KB
testcase_37 AC 35 ms
52,776 KB
testcase_38 AC 35 ms
53,540 KB
testcase_39 AC 36 ms
52,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))

if all(a >= 0 for a in A) and (a>b for a,b in zip(A,A[1:])):
    print(-A[-1])
    exit()


INF = 10**18
p = -INF
m = 0
for a in A:
    np = max(p, m - a)
    nm = max(m, p + a)
    p,m = np,nm
print(max(p,m))
0