結果

問題 No.2970 三次関数の絶対値
ユーザー anonymouslyanonymously
提出日時 2024-11-29 21:50:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 632 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-11-29 21:50:49
合計ジャッジ時間 3,130 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
11,008 KB
testcase_01 AC 31 ms
11,008 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 31 ms
10,880 KB
testcase_04 AC 32 ms
10,752 KB
testcase_05 WA -
testcase_06 AC 32 ms
10,752 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 31 ms
10,880 KB
testcase_11 AC 32 ms
10,880 KB
testcase_12 WA -
testcase_13 AC 31 ms
10,880 KB
testcase_14 AC 32 ms
11,008 KB
testcase_15 WA -
testcase_16 AC 33 ms
10,880 KB
testcase_17 WA -
testcase_18 AC 32 ms
11,008 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 32 ms
11,008 KB
testcase_22 WA -
testcase_23 AC 31 ms
10,752 KB
testcase_24 AC 32 ms
10,880 KB
testcase_25 AC 31 ms
10,624 KB
testcase_26 AC 31 ms
10,880 KB
testcase_27 WA -
testcase_28 AC 32 ms
10,880 KB
testcase_29 WA -
testcase_30 AC 31 ms
10,752 KB
testcase_31 AC 32 ms
10,880 KB
testcase_32 AC 31 ms
11,008 KB
testcase_33 WA -
testcase_34 AC 31 ms
10,752 KB
testcase_35 WA -
testcase_36 AC 32 ms
10,752 KB
testcase_37 AC 31 ms
10,752 KB
testcase_38 WA -
testcase_39 AC 31 ms
10,752 KB
testcase_40 AC 31 ms
10,880 KB
testcase_41 WA -
testcase_42 AC 32 ms
10,880 KB
testcase_43 WA -
testcase_44 AC 31 ms
10,880 KB
testcase_45 AC 32 ms
10,880 KB
testcase_46 AC 31 ms
10,624 KB
testcase_47 AC 32 ms
10,880 KB
testcase_48 WA -
testcase_49 AC 31 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt

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


def func(x):
    y = 0.0
    a = 1.0
    for i in range(4):
        y += C[i] * a
        a *= x
    return y


Y = [func(L), func(R)]
D = [i * C[i] for i in range(1, 4)]
if C[3] and D[1] * D[1] - 4 * D[0] * D[2] > 0:
    l = (-D[1] - sqrt(D[1] * D[1] - 4 * D[0] * D[2])) / (2 * D[2])
    r = (-D[1] + sqrt(D[1] * D[1] - 4 * D[0] * D[2])) / (2 * D[2])
    Y.append(func(l))
    Y.append(func(r))
elif C[2]:
    m = -D[0] / D[1]
    Y.append(func(m))
if max(Y) < 0:
    print(-max(Y))
elif min(Y) > 0:
    print(min(Y))
else:
    print(0)
0