結果

問題 No.2970 三次関数の絶対値
ユーザー ecotteaecottea
提出日時 2024-11-30 03:01:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 307 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 129,192 KB
最終ジャッジ日時 2024-11-30 03:03:08
合計ジャッジ時間 67,265 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,469 ms
67,824 KB
testcase_01 AC 1,263 ms
67,828 KB
testcase_02 AC 1,271 ms
67,440 KB
testcase_03 AC 1,260 ms
67,704 KB
testcase_04 AC 1,235 ms
67,200 KB
testcase_05 AC 1,254 ms
67,844 KB
testcase_06 AC 1,243 ms
67,452 KB
testcase_07 AC 1,228 ms
67,336 KB
testcase_08 AC 1,217 ms
67,844 KB
testcase_09 AC 1,244 ms
67,960 KB
testcase_10 AC 1,253 ms
67,316 KB
testcase_11 AC 1,234 ms
67,200 KB
testcase_12 AC 1,237 ms
67,316 KB
testcase_13 AC 1,277 ms
67,712 KB
testcase_14 AC 1,227 ms
67,576 KB
testcase_15 AC 1,237 ms
67,592 KB
testcase_16 AC 1,248 ms
67,324 KB
testcase_17 AC 1,268 ms
67,836 KB
testcase_18 AC 1,250 ms
67,316 KB
testcase_19 AC 1,258 ms
67,444 KB
testcase_20 AC 1,256 ms
67,448 KB
testcase_21 AC 1,269 ms
67,460 KB
testcase_22 AC 1,258 ms
67,840 KB
testcase_23 AC 1,262 ms
67,676 KB
testcase_24 AC 1,259 ms
67,296 KB
testcase_25 AC 1,238 ms
67,836 KB
testcase_26 AC 1,246 ms
67,832 KB
testcase_27 AC 1,277 ms
67,840 KB
testcase_28 AC 1,265 ms
67,320 KB
testcase_29 AC 1,257 ms
67,820 KB
testcase_30 AC 1,250 ms
67,844 KB
testcase_31 WA -
testcase_32 AC 1,264 ms
67,968 KB
testcase_33 AC 1,256 ms
67,476 KB
testcase_34 AC 1,265 ms
67,832 KB
testcase_35 AC 1,251 ms
67,332 KB
testcase_36 AC 1,242 ms
67,184 KB
testcase_37 WA -
testcase_38 AC 1,231 ms
67,836 KB
testcase_39 AC 1,256 ms
67,824 KB
testcase_40 AC 1,250 ms
67,952 KB
testcase_41 AC 1,240 ms
67,968 KB
testcase_42 AC 1,253 ms
67,584 KB
testcase_43 AC 1,249 ms
67,844 KB
testcase_44 AC 1,263 ms
67,592 KB
testcase_45 AC 1,316 ms
67,716 KB
testcase_46 WA -
testcase_47 AC 1,241 ms
67,456 KB
testcase_48 AC 1,258 ms
67,448 KB
testcase_49 AC 1,239 ms
129,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
from scipy.optimize import minimize_scalar, shgo, 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)

res = minimize_scalar(f, bounds=(l, r), method="bounded")
print('{:f}'.format(res.fun))
0