結果

問題 No.2970 三次関数の絶対値
ユーザー lignanlignan
提出日時 2024-12-18 13:01:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,096 bytes
コンパイル時間 2,395 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-12-18 13:01:28
合計ジャッジ時間 6,165 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

from math import sqrt
C0,C1,C2,C3=map(int,input().split())
L,R=map(int,input().split())

def f(x):
    return C0+C1*x+C2*x**2+C3*x**3
def absf(x):
    return abs(C0+C1*x+C2*x**2+C3*x**3)

if C3!=0:
    if C2**2-3*C1*C3>=0:
        X1=(-C2+sqrt(C2**2-3*C1*C3))/3/C3
        X2=(-C2-sqrt(C2**2-3*C1*C3))/3/C3
        X=[]
        if L<=X1<=R:
            X.append(X1)
        if L<=X2<=R:
            X.append(X2)
        flag=True
        for x in X:
            if not(f(L)>0 and f(R)>0 and f(x)>0) or not(f(L)<0 and f(R)<0 and f(x)<0) :
                flag=False
        if flag:
            print(0)
            exit()
        else:
            ans=min(absf(L),absf(R))
            for x in X:
                ans=min(ans,absf(x))
            print(ans)
            exit()
    else:
        ans=min(absf(L),absf(R))
        print(ans)
        exit()
        
else:
    if C2!=0:
        ans=min(absf(L),absf(R))
        X=-C1/2/C2
        if L<=X<=R:
            ans=min(ans,absf(X))
    else:
        if C1!=0:
            ans=min(absf(L),absf(R))
        else:
            ans=0
print(ans)

0