結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 WA -
testcase_03 RE -
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 WA -
testcase_07 AC 28 ms
10,752 KB
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 AC 28 ms
10,624 KB
testcase_18 WA -
testcase_19 AC 27 ms
10,752 KB
testcase_20 AC 30 ms
10,752 KB
testcase_21 WA -
testcase_22 AC 29 ms
10,624 KB
testcase_23 AC 29 ms
10,624 KB
testcase_24 AC 28 ms
10,624 KB
testcase_25 AC 29 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))
    priunt(ans)
    if L<=X1<=R:
        ans=min(ans,f(X1))
    if L<=X2<=R:
        ans=min(ans,f(X2))
else:
    if C2!=0:
        X=-C1/2/C2
        ans=min(f(L),f(R))
    else:
        if C1!=0:
            ans=min(f(L),f(R))
        else:
            ans=0
print(ans)

0