結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
99,100 KB
testcase_01 AC 80 ms
98,484 KB
testcase_02 AC 82 ms
99,000 KB
testcase_03 AC 62 ms
81,860 KB
testcase_04 AC 87 ms
104,516 KB
testcase_05 AC 69 ms
87,612 KB
testcase_06 AC 56 ms
76,244 KB
testcase_07 AC 88 ms
104,188 KB
testcase_08 AC 45 ms
65,880 KB
testcase_09 AC 71 ms
90,972 KB
testcase_10 AC 101 ms
102,316 KB
testcase_11 AC 103 ms
102,132 KB
testcase_12 AC 100 ms
102,248 KB
testcase_13 AC 102 ms
102,104 KB
testcase_14 AC 97 ms
102,132 KB
testcase_15 AC 104 ms
102,184 KB
testcase_16 AC 99 ms
102,056 KB
testcase_17 AC 103 ms
102,512 KB
testcase_18 AC 102 ms
102,268 KB
testcase_19 AC 101 ms
102,304 KB
testcase_20 AC 96 ms
102,676 KB
testcase_21 AC 98 ms
101,792 KB
testcase_22 AC 99 ms
100,228 KB
testcase_23 AC 34 ms
52,520 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 36 ms
52,316 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 36 ms
51,960 KB
testcase_31 WA -
testcase_32 AC 36 ms
52,484 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 36 ms
53,032 KB
testcase_36 AC 37 ms
53,564 KB
testcase_37 WA -
testcase_38 AC 36 ms
52,692 KB
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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