結果

問題 No.2970 三次関数の絶対値
ユーザー tassei903tassei903
提出日時 2024-11-29 21:40:53
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 620 ms / 2,000 ms
コード長 427 bytes
コンパイル時間 82 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 45,352 KB
最終ジャッジ日時 2024-11-29 21:41:24
合計ジャッジ時間 25,595 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 471 ms
44,204 KB
testcase_01 AC 485 ms
44,344 KB
testcase_02 AC 620 ms
44,968 KB
testcase_03 AC 493 ms
44,192 KB
testcase_04 AC 468 ms
44,712 KB
testcase_05 AC 466 ms
44,712 KB
testcase_06 AC 501 ms
44,708 KB
testcase_07 AC 466 ms
45,092 KB
testcase_08 AC 508 ms
44,716 KB
testcase_09 AC 470 ms
45,224 KB
testcase_10 AC 467 ms
44,964 KB
testcase_11 AC 494 ms
44,708 KB
testcase_12 AC 467 ms
44,712 KB
testcase_13 AC 455 ms
44,964 KB
testcase_14 AC 508 ms
45,096 KB
testcase_15 AC 475 ms
45,220 KB
testcase_16 AC 464 ms
45,088 KB
testcase_17 AC 486 ms
45,092 KB
testcase_18 AC 466 ms
44,716 KB
testcase_19 AC 490 ms
45,092 KB
testcase_20 AC 462 ms
44,836 KB
testcase_21 AC 460 ms
44,820 KB
testcase_22 AC 492 ms
45,084 KB
testcase_23 AC 459 ms
44,832 KB
testcase_24 AC 462 ms
44,972 KB
testcase_25 AC 456 ms
44,708 KB
testcase_26 AC 454 ms
45,100 KB
testcase_27 AC 486 ms
45,092 KB
testcase_28 AC 468 ms
44,972 KB
testcase_29 AC 456 ms
45,096 KB
testcase_30 AC 492 ms
44,716 KB
testcase_31 AC 458 ms
44,712 KB
testcase_32 AC 492 ms
44,708 KB
testcase_33 AC 461 ms
44,964 KB
testcase_34 AC 455 ms
45,220 KB
testcase_35 AC 490 ms
44,756 KB
testcase_36 AC 463 ms
45,352 KB
testcase_37 AC 481 ms
44,836 KB
testcase_38 AC 463 ms
45,096 KB
testcase_39 AC 456 ms
45,224 KB
testcase_40 AC 482 ms
45,096 KB
testcase_41 AC 466 ms
44,976 KB
testcase_42 AC 467 ms
44,712 KB
testcase_43 AC 488 ms
45,092 KB
testcase_44 AC 459 ms
44,816 KB
testcase_45 AC 517 ms
45,116 KB
testcase_46 AC 461 ms
44,836 KB
testcase_47 AC 463 ms
44,972 KB
testcase_48 AC 488 ms
44,716 KB
testcase_49 AC 474 ms
44,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

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

c = list(map(int, input().split()))
l, r = map(int, input().split())
# print(c)
# print(np.roots([3*c[3],2*c[2], c[1]]))
X = [l, r] + list(np.roots([3*c[3],2*c[2], c[1]])) + list(np.roots([c[3], c[2], c[1], c[0]]))
ans = 10 ** 18
# print(X)
for x in X:
    if l <= x <= r and x.imag == 0:
        ans = min(ans, f(x))

print(ans)
0