結果

問題 No.2970 三次関数の絶対値
ユーザー pitPpitP
提出日時 2024-11-29 21:35:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 275 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 64,552 KB
最終ジャッジ日時 2024-11-29 21:35:49
合計ジャッジ時間 4,183 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
62,216 KB
testcase_01 AC 52 ms
62,524 KB
testcase_02 AC 51 ms
63,612 KB
testcase_03 AC 52 ms
64,184 KB
testcase_04 AC 51 ms
64,520 KB
testcase_05 AC 53 ms
63,084 KB
testcase_06 AC 53 ms
64,160 KB
testcase_07 AC 57 ms
63,012 KB
testcase_08 AC 51 ms
63,520 KB
testcase_09 AC 50 ms
63,252 KB
testcase_10 AC 50 ms
63,052 KB
testcase_11 AC 51 ms
63,892 KB
testcase_12 AC 50 ms
63,436 KB
testcase_13 AC 50 ms
64,528 KB
testcase_14 AC 50 ms
63,248 KB
testcase_15 AC 51 ms
64,104 KB
testcase_16 AC 50 ms
63,268 KB
testcase_17 AC 51 ms
62,728 KB
testcase_18 AC 52 ms
63,500 KB
testcase_19 AC 54 ms
63,764 KB
testcase_20 AC 53 ms
64,064 KB
testcase_21 AC 54 ms
63,800 KB
testcase_22 AC 52 ms
62,900 KB
testcase_23 AC 50 ms
64,020 KB
testcase_24 AC 50 ms
63,664 KB
testcase_25 AC 51 ms
63,624 KB
testcase_26 AC 49 ms
64,264 KB
testcase_27 AC 50 ms
62,896 KB
testcase_28 AC 50 ms
63,552 KB
testcase_29 AC 49 ms
64,552 KB
testcase_30 AC 50 ms
63,088 KB
testcase_31 AC 50 ms
63,340 KB
testcase_32 WA -
testcase_33 AC 49 ms
63,084 KB
testcase_34 AC 50 ms
63,540 KB
testcase_35 AC 49 ms
64,176 KB
testcase_36 AC 51 ms
63,088 KB
testcase_37 AC 53 ms
63,476 KB
testcase_38 AC 52 ms
63,088 KB
testcase_39 AC 52 ms
62,916 KB
testcase_40 WA -
testcase_41 AC 54 ms
63,404 KB
testcase_42 AC 51 ms
64,220 KB
testcase_43 AC 50 ms
63,184 KB
testcase_44 AC 50 ms
63,052 KB
testcase_45 AC 50 ms
62,736 KB
testcase_46 AC 52 ms
64,416 KB
testcase_47 AC 52 ms
63,844 KB
testcase_48 AC 51 ms
63,264 KB
testcase_49 AC 50 ms
63,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import random

C = list(map(int, input().split()))
L, R = map(int, input().split())

def f(x):
    return abs(C[0] + C[1] * x + C[2] * x * x + C[3] * x * x * x)


ans = 1 << 60
for _ in range(10 ** 5):
    x = random.random() * (R - L) + L
    ans = min(ans, f(x))
print(ans)
0