結果

問題 No.2970 三次関数の絶対値
ユーザー Yukino DX.Yukino DX.
提出日時 2024-12-07 10:09:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,948 ms / 2,000 ms
コード長 687 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 62,336 KB
最終ジャッジ日時 2024-12-07 10:11:12
合計ジャッジ時間 100,867 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,941 ms
61,312 KB
testcase_01 AC 1,941 ms
61,952 KB
testcase_02 AC 1,940 ms
62,080 KB
testcase_03 AC 1,941 ms
62,080 KB
testcase_04 AC 1,941 ms
61,912 KB
testcase_05 AC 1,942 ms
62,080 KB
testcase_06 AC 1,944 ms
62,208 KB
testcase_07 AC 1,939 ms
61,824 KB
testcase_08 AC 1,942 ms
61,696 KB
testcase_09 AC 1,943 ms
61,696 KB
testcase_10 AC 1,942 ms
61,568 KB
testcase_11 AC 1,941 ms
62,080 KB
testcase_12 AC 1,941 ms
62,080 KB
testcase_13 AC 1,948 ms
62,080 KB
testcase_14 AC 1,942 ms
62,080 KB
testcase_15 AC 1,941 ms
61,696 KB
testcase_16 AC 1,941 ms
61,824 KB
testcase_17 AC 1,941 ms
61,696 KB
testcase_18 AC 1,941 ms
61,696 KB
testcase_19 AC 1,941 ms
61,568 KB
testcase_20 AC 1,941 ms
62,240 KB
testcase_21 AC 1,942 ms
61,824 KB
testcase_22 AC 1,941 ms
61,952 KB
testcase_23 AC 1,941 ms
62,208 KB
testcase_24 AC 1,940 ms
61,568 KB
testcase_25 AC 1,940 ms
62,336 KB
testcase_26 AC 1,941 ms
61,952 KB
testcase_27 AC 1,942 ms
61,696 KB
testcase_28 AC 1,941 ms
62,208 KB
testcase_29 AC 1,941 ms
62,124 KB
testcase_30 AC 1,943 ms
61,696 KB
testcase_31 AC 1,941 ms
61,952 KB
testcase_32 AC 1,948 ms
61,824 KB
testcase_33 AC 1,941 ms
62,080 KB
testcase_34 AC 1,940 ms
61,312 KB
testcase_35 AC 1,943 ms
61,900 KB
testcase_36 AC 1,939 ms
61,568 KB
testcase_37 AC 1,941 ms
61,696 KB
testcase_38 AC 1,941 ms
61,824 KB
testcase_39 AC 1,942 ms
61,568 KB
testcase_40 AC 1,940 ms
61,824 KB
testcase_41 AC 1,940 ms
61,696 KB
testcase_42 AC 1,939 ms
61,824 KB
testcase_43 AC 1,940 ms
61,952 KB
testcase_44 AC 1,941 ms
61,568 KB
testcase_45 AC 1,941 ms
61,824 KB
testcase_46 AC 1,941 ms
62,080 KB
testcase_47 AC 1,946 ms
62,080 KB
testcase_48 AC 1,939 ms
62,336 KB
testcase_49 AC 1,942 ms
62,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import time
import random


class Timer:
    def __init__(self, timelimit):
        self.start_time = time.time()
        self.timelimit = timelimit

    def timeover(self):
        return (time.time() - self.start_time) >= self.timelimit

    def elapsed(self):
        return time.time() - self.start_time


def f(x, c):
    return c[0] + c[1] * x + c[2] * x * x + c[3] * x * x * x


def main():
    c = list(map(int, input().split()))
    l, r = list(map(int, input().split()))

    timer = Timer(1.9)
    ans = float("inf")

    while not timer.timeover():
        x = random.uniform(l, r)
        ans = min(ans, abs(f(x, c)))

    print(ans)


if __name__ == "__main__":
    main()
0