結果

問題 No.2970 三次関数の絶対値
ユーザー titiatitia
提出日時 2024-11-29 22:39:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 161 ms / 2,000 ms
コード長 488 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 141,824 KB
最終ジャッジ日時 2024-11-29 22:40:07
合計ジャッジ時間 8,321 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
135,552 KB
testcase_01 AC 101 ms
141,568 KB
testcase_02 AC 107 ms
141,056 KB
testcase_03 AC 105 ms
141,568 KB
testcase_04 AC 100 ms
141,312 KB
testcase_05 AC 130 ms
141,312 KB
testcase_06 AC 102 ms
141,568 KB
testcase_07 AC 100 ms
141,184 KB
testcase_08 AC 100 ms
141,556 KB
testcase_09 AC 99 ms
141,824 KB
testcase_10 AC 104 ms
141,696 KB
testcase_11 AC 135 ms
141,312 KB
testcase_12 AC 128 ms
141,440 KB
testcase_13 AC 131 ms
141,312 KB
testcase_14 AC 142 ms
141,568 KB
testcase_15 AC 128 ms
141,056 KB
testcase_16 AC 126 ms
141,312 KB
testcase_17 AC 146 ms
141,312 KB
testcase_18 AC 129 ms
141,184 KB
testcase_19 AC 124 ms
141,312 KB
testcase_20 AC 127 ms
141,312 KB
testcase_21 AC 125 ms
141,312 KB
testcase_22 AC 125 ms
141,184 KB
testcase_23 AC 151 ms
141,312 KB
testcase_24 AC 127 ms
141,056 KB
testcase_25 AC 129 ms
141,056 KB
testcase_26 AC 128 ms
141,184 KB
testcase_27 AC 127 ms
141,696 KB
testcase_28 AC 130 ms
141,184 KB
testcase_29 AC 128 ms
141,568 KB
testcase_30 AC 131 ms
141,312 KB
testcase_31 AC 134 ms
141,312 KB
testcase_32 AC 156 ms
141,312 KB
testcase_33 AC 131 ms
141,568 KB
testcase_34 AC 129 ms
141,312 KB
testcase_35 AC 127 ms
141,312 KB
testcase_36 AC 137 ms
141,312 KB
testcase_37 AC 132 ms
141,568 KB
testcase_38 AC 133 ms
141,312 KB
testcase_39 AC 158 ms
141,312 KB
testcase_40 AC 161 ms
141,568 KB
testcase_41 AC 129 ms
141,696 KB
testcase_42 AC 127 ms
141,568 KB
testcase_43 AC 128 ms
141,056 KB
testcase_44 AC 131 ms
141,440 KB
testcase_45 AC 130 ms
141,440 KB
testcase_46 AC 137 ms
141,696 KB
testcase_47 AC 130 ms
141,184 KB
testcase_48 AC 130 ms
141,312 KB
testcase_49 AC 137 ms
141,312 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=[]
for i in range(10**6+1):
    x=L+(R-L)/(10**6)*i
    ANS.append(f(x))

MIN=min(ANS)
IND=ANS.index(MIN)

MIN=L+(R-L)/(10**6)*(IND-1)
MAX=L+(R-L)/(10**6)*(IND+1)

MIN=max(MIN,L)
MAX=min(MAX,R)

for tt in range(1000):
    mid1=MIN+(MAX-MIN)/3
    mid2=MIN+(MAX-MIN)/3*2

    if f(mid1)<f(mid2):
        MAX=mid2
    else:
        MIN=mid1
    
print(f((MIN+MAX)/2))
0