結果

問題 No.2854 -1 Subsequence
ユーザー ryuusagiryuusagi
提出日時 2024-08-25 14:07:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 206 bytes
コンパイル時間 333 ms
コンパイル使用メモリ 82,984 KB
実行使用メモリ 114,340 KB
最終ジャッジ日時 2024-08-25 14:07:49
合計ジャッジ時間 5,097 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
102,160 KB
testcase_01 AC 90 ms
101,276 KB
testcase_02 AC 91 ms
101,976 KB
testcase_03 AC 78 ms
82,896 KB
testcase_04 AC 95 ms
107,872 KB
testcase_05 AC 75 ms
89,084 KB
testcase_06 AC 62 ms
75,760 KB
testcase_07 AC 95 ms
108,100 KB
testcase_08 AC 50 ms
66,760 KB
testcase_09 AC 80 ms
93,076 KB
testcase_10 AC 101 ms
114,340 KB
testcase_11 AC 101 ms
113,132 KB
testcase_12 AC 102 ms
113,132 KB
testcase_13 AC 101 ms
112,960 KB
testcase_14 AC 103 ms
113,136 KB
testcase_15 AC 129 ms
112,840 KB
testcase_16 AC 103 ms
113,076 KB
testcase_17 AC 102 ms
113,008 KB
testcase_18 AC 102 ms
113,936 KB
testcase_19 AC 101 ms
112,624 KB
testcase_20 AC 100 ms
113,580 KB
testcase_21 AC 98 ms
113,288 KB
testcase_22 AC 103 ms
114,260 KB
testcase_23 AC 38 ms
52,944 KB
testcase_24 AC 38 ms
52,828 KB
testcase_25 AC 37 ms
52,208 KB
testcase_26 AC 38 ms
52,688 KB
testcase_27 AC 39 ms
52,828 KB
testcase_28 AC 38 ms
53,744 KB
testcase_29 AC 39 ms
52,620 KB
testcase_30 AC 39 ms
52,348 KB
testcase_31 AC 37 ms
52,560 KB
testcase_32 AC 42 ms
53,284 KB
testcase_33 AC 38 ms
52,564 KB
testcase_34 AC 38 ms
53,420 KB
testcase_35 AC 38 ms
52,624 KB
testcase_36 AC 39 ms
52,364 KB
testcase_37 AC 38 ms
52,432 KB
testcase_38 AC 38 ms
51,944 KB
testcase_39 AC 38 ms
52,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, *a = map(int, open(0).read().split())
b, c = 0, -float('inf')
f = 0
for i in a:
    if c + i >= b:
        f = 1
    b, c = max(b, c + i), max(c, b - i)
if f == 1:
    print(max(b, c))
else:
    print(c)
0