結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
99,624 KB
testcase_01 AC 78 ms
98,248 KB
testcase_02 AC 76 ms
99,364 KB
testcase_03 AC 61 ms
83,328 KB
testcase_04 AC 85 ms
104,716 KB
testcase_05 AC 66 ms
87,884 KB
testcase_06 AC 55 ms
76,268 KB
testcase_07 AC 84 ms
104,132 KB
testcase_08 AC 44 ms
65,804 KB
testcase_09 AC 69 ms
91,712 KB
testcase_10 AC 98 ms
102,480 KB
testcase_11 AC 115 ms
102,316 KB
testcase_12 AC 117 ms
102,064 KB
testcase_13 AC 98 ms
102,080 KB
testcase_14 AC 96 ms
102,632 KB
testcase_15 AC 99 ms
102,324 KB
testcase_16 AC 96 ms
102,272 KB
testcase_17 AC 102 ms
102,124 KB
testcase_18 AC 100 ms
102,092 KB
testcase_19 AC 96 ms
102,080 KB
testcase_20 AC 97 ms
102,600 KB
testcase_21 WA -
testcase_22 AC 101 ms
100,516 KB
testcase_23 AC 34 ms
53,320 KB
testcase_24 AC 44 ms
52,824 KB
testcase_25 AC 36 ms
52,560 KB
testcase_26 AC 35 ms
52,676 KB
testcase_27 AC 36 ms
52,584 KB
testcase_28 AC 36 ms
53,360 KB
testcase_29 AC 36 ms
52,196 KB
testcase_30 AC 34 ms
52,932 KB
testcase_31 AC 34 ms
52,416 KB
testcase_32 AC 35 ms
52,412 KB
testcase_33 AC 35 ms
52,572 KB
testcase_34 AC 34 ms
52,448 KB
testcase_35 AC 35 ms
52,240 KB
testcase_36 AC 34 ms
52,832 KB
testcase_37 AC 35 ms
52,252 KB
testcase_38 AC 34 ms
53,048 KB
testcase_39 AC 35 ms
52,616 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