結果

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

テストケース

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

ソースコード

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:
        #print(C2**2-3*C1*C3)
        X1=(-C2+sqrt(C2**2-3*C1*C3))/3/C3
        X2=(-C2-sqrt(C2**2-3*C1*C3))/3/C3
        X=[]
        #print(X1,X2)
        if L<X1<R:
            X.append(X1)
        if L<X2<R:
            X.append(X2)
        #print(X)
        if X:
            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:
                ans=min(absf(L),absf(R))
                for x in X:
                    ans=min(ans,absf(x))
                    print(ans)
                    exit()
            else:
                print(0)
                exit()

        else:
            flag=True
            if not(f(L)>0 and f(R)>0) or not(f(L)<0 and f(R))<0:
                flag=False
            if flag: 
                ans=min(absf(L),absf(R))
                print(ans)
                exit()
            else:
                print(0)
                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