結果

問題 No.2970 三次関数の絶対値
ユーザー ecotteaecottea
提出日時 2024-11-30 03:14:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,582 ms / 2,000 ms
コード長 480 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 68,124 KB
最終ジャッジ日時 2024-11-30 03:16:10
合計ジャッジ時間 76,506 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,555 ms
67,720 KB
testcase_01 AC 1,554 ms
67,852 KB
testcase_02 AC 1,568 ms
67,472 KB
testcase_03 AC 1,569 ms
68,112 KB
testcase_04 AC 1,571 ms
68,000 KB
testcase_05 AC 1,547 ms
67,616 KB
testcase_06 AC 1,582 ms
67,976 KB
testcase_07 AC 1,534 ms
67,852 KB
testcase_08 AC 1,524 ms
67,992 KB
testcase_09 AC 1,539 ms
67,996 KB
testcase_10 AC 1,521 ms
67,996 KB
testcase_11 AC 1,460 ms
67,616 KB
testcase_12 AC 1,401 ms
67,872 KB
testcase_13 AC 1,390 ms
67,864 KB
testcase_14 AC 1,411 ms
67,848 KB
testcase_15 AC 1,513 ms
67,480 KB
testcase_16 AC 1,432 ms
67,724 KB
testcase_17 AC 1,357 ms
67,468 KB
testcase_18 AC 1,406 ms
67,344 KB
testcase_19 AC 1,460 ms
67,724 KB
testcase_20 AC 1,552 ms
67,980 KB
testcase_21 AC 1,417 ms
67,848 KB
testcase_22 AC 1,375 ms
67,728 KB
testcase_23 AC 1,508 ms
67,748 KB
testcase_24 AC 1,533 ms
67,992 KB
testcase_25 AC 1,391 ms
67,592 KB
testcase_26 AC 1,386 ms
67,868 KB
testcase_27 AC 1,515 ms
67,976 KB
testcase_28 AC 1,531 ms
67,860 KB
testcase_29 AC 1,425 ms
67,860 KB
testcase_30 AC 1,385 ms
67,496 KB
testcase_31 AC 1,374 ms
67,484 KB
testcase_32 AC 1,400 ms
67,336 KB
testcase_33 AC 1,538 ms
67,856 KB
testcase_34 AC 1,450 ms
67,852 KB
testcase_35 AC 1,375 ms
67,848 KB
testcase_36 AC 1,421 ms
67,464 KB
testcase_37 AC 1,529 ms
67,464 KB
testcase_38 AC 1,455 ms
67,460 KB
testcase_39 AC 1,422 ms
67,868 KB
testcase_40 AC 1,498 ms
67,984 KB
testcase_41 AC 1,533 ms
68,124 KB
testcase_42 AC 1,411 ms
67,488 KB
testcase_43 AC 1,392 ms
67,996 KB
testcase_44 AC 1,377 ms
67,608 KB
testcase_45 AC 1,454 ms
67,736 KB
testcase_46 AC 1,531 ms
67,852 KB
testcase_47 AC 1,430 ms
67,464 KB
testcase_48 AC 1,345 ms
67,736 KB
testcase_49 AC 1,376 ms
67,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# https://mirucacule.hatenablog.com/entry/2021/09/14/183909

import numpy as np
from scipy.optimize import minimize

c0, c1, c2, c3 = map(int, input().split())
l, r = map(int, input().split())

def f(x):
    return abs(c0 + c1 * x + c2 * x**2 + c3 * x**3)

div = 100
x = np.linspace(l, r, div)
y = f(x)
x0 = l + ((r - l) / div) * (np.argmin(y) + 1) # initial point
bnds = ((l, r),)
res = minimize(f, x0, method='Nelder-Mead', bounds=bnds, tol=1e-5)

print('{:f}'.format(res.fun))
0