結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 26 ms
10,624 KB
testcase_04 AC 26 ms
10,624 KB
testcase_05 AC 27 ms
10,624 KB
testcase_06 AC 26 ms
10,624 KB
testcase_07 AC 25 ms
10,624 KB
testcase_08 WA -
testcase_09 AC 25 ms
10,624 KB
testcase_10 AC 27 ms
10,624 KB
testcase_11 AC 27 ms
10,624 KB
testcase_12 AC 26 ms
10,752 KB
testcase_13 AC 31 ms
10,624 KB
testcase_14 AC 27 ms
10,880 KB
testcase_15 WA -
testcase_16 AC 26 ms
10,752 KB
testcase_17 AC 27 ms
10,624 KB
testcase_18 AC 27 ms
10,624 KB
testcase_19 AC 25 ms
10,752 KB
testcase_20 AC 25 ms
10,624 KB
testcase_21 AC 32 ms
10,624 KB
testcase_22 AC 26 ms
10,624 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 25 ms
10,624 KB
testcase_28 AC 25 ms
10,624 KB
testcase_29 AC 26 ms
10,752 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 24 ms
10,624 KB
testcase_34 AC 25 ms
10,752 KB
testcase_35 AC 26 ms
10,624 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 25 ms
10,752 KB
testcase_39 AC 26 ms
10,624 KB
testcase_40 WA -
testcase_41 AC 29 ms
10,624 KB
testcase_42 WA -
testcase_43 AC 26 ms
10,624 KB
testcase_44 AC 25 ms
10,624 KB
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 26 ms
10,752 KB
testcase_48 WA -
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*x+C3*x*x*x)


ANS=[f(L),f(R),f((L+R)/2),f((L+R)/3),f((L+R)/3*2)]

if C2*C2-3*C1*C3>=0:
    x=(C2*C2-3*C1*C3)**(1/2)

    if 3*C3!=0 and L<=(-C2+x)/(3*C3)<=R:
        ANS.append(f((-C2+x)/(3*C3)))
    if 3*C3!=0 and L<=(-C2-x)/(3*C3)<=R:
        ANS.append(f((-C2-x)/(3*C3)))

if C2!=0 and L<=-C1/(2*C2)<=R:
    ANS.append(f(-C1/(2*C2)))
    
print(min(ANS))
0