結果

問題 No.2970 三次関数の絶対値
ユーザー lignanlignan
提出日時 2024-12-19 06:40:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 273 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,760 KB
最終ジャッジ日時 2024-12-19 06:42:03
合計ジャッジ時間 91,008 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
17,700 KB
testcase_01 AC 1,105 ms
21,504 KB
testcase_02 TLE -
testcase_03 TLE -
testcase_04 AC 1,081 ms
17,952 KB
testcase_05 AC 1,087 ms
17,956 KB
testcase_06 AC 1,127 ms
17,824 KB
testcase_07 AC 1,093 ms
17,824 KB
testcase_08 AC 1,125 ms
17,824 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 1,083 ms
17,700 KB
testcase_13 AC 1,052 ms
17,824 KB
testcase_14 TLE -
testcase_15 AC 1,029 ms
17,956 KB
testcase_16 TLE -
testcase_17 AC 1,062 ms
17,824 KB
testcase_18 AC 1,081 ms
17,828 KB
testcase_19 AC 1,037 ms
21,504 KB
testcase_20 AC 1,034 ms
17,700 KB
testcase_21 AC 1,009 ms
17,828 KB
testcase_22 AC 1,043 ms
17,956 KB
testcase_23 AC 1,058 ms
21,760 KB
testcase_24 AC 1,109 ms
17,700 KB
testcase_25 AC 1,072 ms
21,504 KB
testcase_26 TLE -
testcase_27 AC 1,071 ms
10,752 KB
testcase_28 AC 1,099 ms
10,752 KB
testcase_29 AC 1,006 ms
10,880 KB
testcase_30 AC 1,017 ms
10,752 KB
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 AC 1,049 ms
10,752 KB
testcase_35 AC 1,016 ms
10,880 KB
testcase_36 AC 1,014 ms
10,880 KB
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 AC 1,043 ms
10,880 KB
testcase_45 AC 1,983 ms
11,008 KB
testcase_46 TLE -
testcase_47 TLE -
testcase_48 AC 1,049 ms
10,880 KB
testcase_49 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt
C0,C1,C2,C3=map(int,input().split())
L,R=map(int,input().split())

def f(x):
    return C0+C1*x+C2*x**2+C3*x**3
def absf(x):
    return abs(C0+C1*x+C2*x**2+C3*x**3)

N=1000000
ans=10**10
for i in range(L*N,R*N+1):
    ans=min(ans,absf(i/N))
print(ans)
0