結果

問題 No.2970 三次関数の絶対値
ユーザー PNJPNJ
提出日時 2024-11-29 22:35:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 565 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 53,968 KB
最終ジャッジ日時 2024-11-29 22:36:00
合計ジャッジ時間 3,580 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,808 KB
testcase_01 AC 35 ms
52,196 KB
testcase_02 AC 36 ms
52,740 KB
testcase_03 AC 36 ms
52,236 KB
testcase_04 AC 35 ms
53,312 KB
testcase_05 WA -
testcase_06 AC 36 ms
52,184 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 36 ms
53,240 KB
testcase_11 AC 37 ms
52,924 KB
testcase_12 AC 40 ms
52,156 KB
testcase_13 AC 37 ms
52,016 KB
testcase_14 AC 38 ms
53,060 KB
testcase_15 AC 37 ms
52,972 KB
testcase_16 AC 37 ms
52,684 KB
testcase_17 WA -
testcase_18 AC 36 ms
52,516 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 35 ms
52,500 KB
testcase_22 WA -
testcase_23 AC 34 ms
52,404 KB
testcase_24 AC 36 ms
51,948 KB
testcase_25 AC 36 ms
53,160 KB
testcase_26 AC 34 ms
52,976 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 35 ms
53,360 KB
testcase_31 AC 35 ms
52,880 KB
testcase_32 AC 36 ms
52,596 KB
testcase_33 AC 36 ms
52,608 KB
testcase_34 WA -
testcase_35 AC 35 ms
53,072 KB
testcase_36 AC 41 ms
51,816 KB
testcase_37 AC 36 ms
52,464 KB
testcase_38 WA -
testcase_39 AC 36 ms
51,872 KB
testcase_40 AC 35 ms
52,692 KB
testcase_41 WA -
testcase_42 AC 35 ms
53,032 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 36 ms
53,568 KB
testcase_46 AC 34 ms
53,212 KB
testcase_47 WA -
testcase_48 AC 34 ms
52,004 KB
testcase_49 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b, c, d = map(int, input().split())
L, R = map(int, input().split())

def f(x):
  return a + b * x + c * x * x + d * x * x * x

ans = [f(L), f(R)]

if d != 0:
  p = c * c / (3 * d) - b
  if p == 0:
    x = -c / (3 * d)
    ans.append(f(x))
  elif p > 0:
    p /= (3 * d)
    p = p ** 0.5
    x, y = p - c / (3 * d), -p - c / (3 * d)
    x, y = x / (3 * d), y / (3 * d)
    ans.append(f(x))
    ans.append(f(y))

else:
  if c != 0:
    x = -b / (2 * c)
    ans.append(f(x))

m, M = min(ans), max(ans)

if m * M <= 0:
  print(0)
else:
  print(min(abs(m), abs(M)))
0