結果

問題 No.2970 三次関数の絶対値
ユーザー tassei903
提出日時 2024-11-29 21:40:53
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 620 ms / 2,000 ms
コード長 427 bytes
コンパイル時間 82 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 45,352 KB
最終ジャッジ日時 2024-11-29 21:41:24
合計ジャッジ時間 25,595 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 50
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

def f(x):
    return abs(c[0] + c[1] * x + c[2] * x * x + c[3] * x * x * x)

c = list(map(int, input().split()))
l, r = map(int, input().split())
# print(c)
# print(np.roots([3*c[3],2*c[2], c[1]]))
X = [l, r] + list(np.roots([3*c[3],2*c[2], c[1]])) + list(np.roots([c[3], c[2], c[1], c[0]]))
ans = 10 ** 18
# print(X)
for x in X:
    if l <= x <= r and x.imag == 0:
        ans = min(ans, f(x))

print(ans)
0