結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
99,360 KB
testcase_01 AC 81 ms
98,520 KB
testcase_02 AC 77 ms
99,504 KB
testcase_03 AC 61 ms
83,052 KB
testcase_04 AC 89 ms
104,320 KB
testcase_05 AC 81 ms
88,284 KB
testcase_06 AC 55 ms
75,176 KB
testcase_07 AC 88 ms
104,480 KB
testcase_08 AC 45 ms
65,876 KB
testcase_09 AC 68 ms
91,312 KB
testcase_10 AC 97 ms
102,060 KB
testcase_11 AC 94 ms
102,240 KB
testcase_12 AC 99 ms
102,152 KB
testcase_13 AC 99 ms
102,260 KB
testcase_14 AC 93 ms
102,596 KB
testcase_15 AC 95 ms
102,320 KB
testcase_16 AC 92 ms
102,552 KB
testcase_17 AC 93 ms
102,596 KB
testcase_18 AC 106 ms
102,348 KB
testcase_19 AC 97 ms
102,436 KB
testcase_20 AC 98 ms
102,952 KB
testcase_21 WA -
testcase_22 AC 99 ms
100,336 KB
testcase_23 AC 34 ms
52,192 KB
testcase_24 AC 34 ms
52,072 KB
testcase_25 AC 33 ms
52,980 KB
testcase_26 AC 34 ms
51,940 KB
testcase_27 AC 33 ms
53,480 KB
testcase_28 AC 33 ms
53,756 KB
testcase_29 AC 35 ms
52,936 KB
testcase_30 AC 34 ms
52,520 KB
testcase_31 AC 33 ms
52,196 KB
testcase_32 AC 33 ms
52,280 KB
testcase_33 AC 36 ms
52,392 KB
testcase_34 AC 35 ms
53,160 KB
testcase_35 AC 35 ms
52,964 KB
testcase_36 AC 39 ms
52,476 KB
testcase_37 AC 38 ms
52,384 KB
testcase_38 AC 34 ms
53,536 KB
testcase_39 AC 34 ms
52,928 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