結果

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

テストケース

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

ソースコード

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:
    ans=min(f(L),f(R),f((((-C2+(C2**2-12*C1*C2)**0.5)/3/C3))),f((((-C2-(C2**2-12*C1*C2)**0.5)/3/C3))))
else:
    if C2!=0:
        X=-C1/2/C2
        ans=min(f(L),f(R),f(X))
    else:
        if C1!=0:
            X=-C0/C1
            ans=min(f(L),f(R),f(X))
        else:
            ans=0
print(ans)

0