結果

問題 No.2854 -1 Subsequence
ユーザー nikoro256nikoro256
提出日時 2024-08-25 13:47:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 105 ms / 2,000 ms
コード長 246 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 104,556 KB
最終ジャッジ日時 2024-08-25 13:48:08
合計ジャッジ時間 4,329 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
101,004 KB
testcase_01 AC 82 ms
98,824 KB
testcase_02 AC 89 ms
100,880 KB
testcase_03 AC 64 ms
83,272 KB
testcase_04 AC 91 ms
104,556 KB
testcase_05 AC 70 ms
87,964 KB
testcase_06 AC 54 ms
76,452 KB
testcase_07 AC 88 ms
104,164 KB
testcase_08 AC 47 ms
66,320 KB
testcase_09 AC 73 ms
92,600 KB
testcase_10 AC 97 ms
102,292 KB
testcase_11 AC 101 ms
102,500 KB
testcase_12 AC 101 ms
102,260 KB
testcase_13 AC 105 ms
102,432 KB
testcase_14 AC 99 ms
102,224 KB
testcase_15 AC 96 ms
102,084 KB
testcase_16 AC 99 ms
102,492 KB
testcase_17 AC 99 ms
102,124 KB
testcase_18 AC 104 ms
102,272 KB
testcase_19 AC 100 ms
102,344 KB
testcase_20 AC 97 ms
102,472 KB
testcase_21 AC 100 ms
101,928 KB
testcase_22 AC 101 ms
100,544 KB
testcase_23 AC 35 ms
53,308 KB
testcase_24 AC 34 ms
51,996 KB
testcase_25 AC 34 ms
53,660 KB
testcase_26 AC 34 ms
53,308 KB
testcase_27 AC 38 ms
52,816 KB
testcase_28 AC 37 ms
53,168 KB
testcase_29 AC 34 ms
52,828 KB
testcase_30 AC 36 ms
52,216 KB
testcase_31 AC 35 ms
53,112 KB
testcase_32 AC 33 ms
52,128 KB
testcase_33 AC 36 ms
53,892 KB
testcase_34 AC 35 ms
52,488 KB
testcase_35 AC 34 ms
53,308 KB
testcase_36 AC 36 ms
52,332 KB
testcase_37 AC 40 ms
52,688 KB
testcase_38 AC 39 ms
52,528 KB
testcase_39 AC 35 ms
51,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
left,right=-10**20,-10**20
for i in range(N):
    right_d=max(-A[i],right)
    right_d=max(left-A[i],right_d)
    left_d=max(right+A[i],left)
    right=right_d
    left=left_d
print(max(right,left))
0