結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 569 ms
237,696 KB
testcase_01 AC 560 ms
253,968 KB
testcase_02 AC 581 ms
253,596 KB
testcase_03 AC 573 ms
254,104 KB
testcase_04 AC 634 ms
253,592 KB
testcase_05 AC 560 ms
253,928 KB
testcase_06 AC 579 ms
253,844 KB
testcase_07 AC 568 ms
253,596 KB
testcase_08 WA -
testcase_09 AC 557 ms
253,976 KB
testcase_10 AC 578 ms
253,980 KB
testcase_11 AC 549 ms
254,096 KB
testcase_12 AC 580 ms
253,588 KB
testcase_13 AC 632 ms
254,060 KB
testcase_14 AC 570 ms
253,980 KB
testcase_15 WA -
testcase_16 AC 563 ms
253,844 KB
testcase_17 AC 589 ms
253,976 KB
testcase_18 AC 559 ms
253,580 KB
testcase_19 AC 587 ms
253,840 KB
testcase_20 AC 584 ms
253,844 KB
testcase_21 AC 580 ms
254,060 KB
testcase_22 AC 563 ms
253,812 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 571 ms
253,624 KB
testcase_27 AC 584 ms
254,132 KB
testcase_28 AC 575 ms
253,716 KB
testcase_29 AC 581 ms
253,976 KB
testcase_30 AC 579 ms
253,976 KB
testcase_31 AC 574 ms
253,972 KB
testcase_32 AC 565 ms
253,972 KB
testcase_33 AC 565 ms
253,844 KB
testcase_34 AC 591 ms
254,100 KB
testcase_35 AC 606 ms
253,840 KB
testcase_36 AC 602 ms
253,980 KB
testcase_37 AC 567 ms
253,844 KB
testcase_38 AC 603 ms
254,100 KB
testcase_39 AC 602 ms
254,104 KB
testcase_40 AC 618 ms
253,976 KB
testcase_41 AC 562 ms
253,460 KB
testcase_42 AC 598 ms
253,800 KB
testcase_43 AC 606 ms
253,720 KB
testcase_44 AC 593 ms
253,972 KB
testcase_45 AC 602 ms
253,848 KB
testcase_46 AC 597 ms
253,460 KB
testcase_47 AC 593 ms
253,716 KB
testcase_48 WA -
testcase_49 AC 557 ms
254,144 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**7):
    x=L+(R-L)/(10**7)*i
    ANS.append(f(x))
    
print(min(ANS))
0