結果

問題 No.2970 三次関数の絶対値
ユーザー titiatitia
提出日時 2024-11-29 22:33:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 532 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 143,288 KB
最終ジャッジ日時 2024-11-29 22:33:30
合計ジャッジ時間 7,323 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
136,448 KB
testcase_01 AC 115 ms
142,720 KB
testcase_02 AC 106 ms
142,720 KB
testcase_03 AC 104 ms
142,720 KB
testcase_04 AC 108 ms
142,592 KB
testcase_05 AC 106 ms
142,464 KB
testcase_06 AC 102 ms
142,592 KB
testcase_07 AC 111 ms
142,976 KB
testcase_08 WA -
testcase_09 AC 107 ms
142,976 KB
testcase_10 AC 103 ms
143,104 KB
testcase_11 AC 118 ms
142,976 KB
testcase_12 AC 106 ms
142,592 KB
testcase_13 AC 105 ms
142,848 KB
testcase_14 AC 106 ms
142,792 KB
testcase_15 WA -
testcase_16 AC 103 ms
142,780 KB
testcase_17 AC 138 ms
142,720 KB
testcase_18 AC 106 ms
142,976 KB
testcase_19 AC 107 ms
143,024 KB
testcase_20 AC 106 ms
142,976 KB
testcase_21 AC 108 ms
142,976 KB
testcase_22 AC 108 ms
142,976 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 112 ms
142,592 KB
testcase_27 AC 131 ms
142,848 KB
testcase_28 AC 107 ms
142,848 KB
testcase_29 AC 106 ms
143,028 KB
testcase_30 AC 109 ms
142,976 KB
testcase_31 AC 109 ms
142,592 KB
testcase_32 AC 109 ms
142,592 KB
testcase_33 AC 110 ms
142,848 KB
testcase_34 AC 106 ms
142,976 KB
testcase_35 AC 109 ms
142,848 KB
testcase_36 AC 127 ms
142,976 KB
testcase_37 AC 104 ms
143,104 KB
testcase_38 AC 107 ms
143,104 KB
testcase_39 AC 111 ms
142,720 KB
testcase_40 AC 109 ms
143,012 KB
testcase_41 AC 107 ms
142,976 KB
testcase_42 AC 107 ms
142,532 KB
testcase_43 AC 107 ms
142,848 KB
testcase_44 AC 108 ms
142,848 KB
testcase_45 AC 110 ms
142,848 KB
testcase_46 AC 133 ms
143,104 KB
testcase_47 AC 110 ms
142,592 KB
testcase_48 WA -
testcase_49 AC 107 ms
142,800 KB
権限があれば一括ダウンロードができます

ソースコード

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)))

for i in range(10**6):
    x=L+(R-L)/(10**6)*i
    ANS.append(f(x))
    
print(min(ANS))
0