結果

問題 No.2970 三次関数の絶対値
ユーザー vwxyzvwxyz
提出日時 2024-11-29 21:47:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 544 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-11-29 21:47:16
合計ジャッジ時間 3,006 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 28 ms
10,624 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 28 ms
10,624 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 28 ms
10,624 KB
testcase_10 AC 27 ms
10,624 KB
testcase_11 AC 28 ms
10,752 KB
testcase_12 AC 28 ms
10,880 KB
testcase_13 AC 28 ms
10,752 KB
testcase_14 AC 28 ms
10,624 KB
testcase_15 AC 28 ms
10,624 KB
testcase_16 AC 30 ms
10,624 KB
testcase_17 AC 28 ms
10,624 KB
testcase_18 AC 28 ms
10,624 KB
testcase_19 AC 28 ms
10,624 KB
testcase_20 AC 28 ms
10,752 KB
testcase_21 AC 28 ms
10,624 KB
testcase_22 AC 28 ms
10,624 KB
testcase_23 AC 28 ms
10,624 KB
testcase_24 AC 28 ms
10,624 KB
testcase_25 AC 28 ms
10,752 KB
testcase_26 AC 28 ms
10,624 KB
testcase_27 AC 27 ms
10,752 KB
testcase_28 AC 28 ms
10,624 KB
testcase_29 AC 33 ms
10,752 KB
testcase_30 AC 28 ms
10,752 KB
testcase_31 AC 28 ms
10,624 KB
testcase_32 AC 31 ms
10,752 KB
testcase_33 AC 28 ms
10,496 KB
testcase_34 AC 28 ms
10,752 KB
testcase_35 AC 28 ms
10,624 KB
testcase_36 AC 28 ms
10,752 KB
testcase_37 AC 28 ms
10,880 KB
testcase_38 AC 28 ms
10,624 KB
testcase_39 AC 28 ms
10,752 KB
testcase_40 AC 28 ms
10,624 KB
testcase_41 AC 28 ms
10,624 KB
testcase_42 AC 28 ms
10,624 KB
testcase_43 AC 28 ms
10,752 KB
testcase_44 AC 28 ms
10,624 KB
testcase_45 AC 47 ms
10,752 KB
testcase_46 AC 28 ms
10,752 KB
testcase_47 AC 29 ms
10,752 KB
testcase_48 AC 29 ms
10,624 KB
testcase_49 AC 28 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b,c,d=map(int,input().split())
L,R=map(int,input().split())
def f(x):
    return a+b*x+c*x*x+d*x*x*x
mi=min(f(L),f(R))
ma=max(f(L),f(R))
eps=1e-7
if d:
    if c*c-3*b*d>=0:
        D=c*c-3*b*d
        for i in ((-c+D**.5)/(3*d),(-c-D**.5)/(3*d)):
            if L-eps<=i<=R+eps:
                mi=min(mi,f(i))
                ma=max(ma,f(i))
else:
    if c:
        i=(-b)/(2*c)
        if L-eps<=i<=R+eps:
            mi=min(mi,f(i))
            ma=max(ma,f(i))
if mi<eps and -eps<ma:
    ans=0
else:
    ans=min(abs(mi),abs(ma))
print(ans)
0