結果

問題 No.2970 三次関数の絶対値
ユーザー lignanlignan
提出日時 2024-12-14 09:58:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 538 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-12-14 09:59:02
合計ジャッジ時間 3,635 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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)

if C3!=0:
    X1=(-C2+(C2**2-12*C1*C2)**0.5)/3/C3
    X2=(-C2-(C2**2-12*C1*C2)**0.5)/3/C3
    ans=min(f(L),f(R))

    if L<=X1<=R:
        ans=min(ans,f(X1))
    if L<=X2<=R:
        ans=min(ans,f(X2))
else:
    if C2!=0:
        ans=min(f(L),f(R))
        X=-C1/2/C2
        if L<=X<R:
            ans=min(ans,f(X))
    else:
        if C1!=0:
            ans=min(f(L),f(R))
        else:
            ans=0
print(ans)

0