結果

問題 No.2970 三次関数の絶対値
ユーザー maguroflymagurofly
提出日時 2024-11-29 21:39:21
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 508 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-11-29 21:39:44
合計ジャッジ時間 6,165 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
12,032 KB
testcase_01 AC 84 ms
12,160 KB
testcase_02 AC 83 ms
12,032 KB
testcase_03 AC 82 ms
12,032 KB
testcase_04 AC 83 ms
12,032 KB
testcase_05 AC 83 ms
12,160 KB
testcase_06 AC 83 ms
12,032 KB
testcase_07 AC 93 ms
12,032 KB
testcase_08 AC 83 ms
12,160 KB
testcase_09 AC 84 ms
12,160 KB
testcase_10 WA -
testcase_11 AC 83 ms
11,904 KB
testcase_12 AC 82 ms
12,032 KB
testcase_13 AC 86 ms
12,288 KB
testcase_14 AC 83 ms
12,160 KB
testcase_15 AC 83 ms
12,032 KB
testcase_16 AC 84 ms
12,160 KB
testcase_17 AC 83 ms
12,160 KB
testcase_18 AC 83 ms
12,288 KB
testcase_19 AC 83 ms
12,160 KB
testcase_20 AC 82 ms
12,032 KB
testcase_21 AC 83 ms
12,288 KB
testcase_22 AC 83 ms
12,032 KB
testcase_23 AC 83 ms
12,160 KB
testcase_24 AC 82 ms
12,288 KB
testcase_25 AC 85 ms
12,032 KB
testcase_26 WA -
testcase_27 AC 91 ms
12,032 KB
testcase_28 AC 83 ms
12,288 KB
testcase_29 AC 85 ms
12,160 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 84 ms
12,288 KB
testcase_34 AC 84 ms
11,904 KB
testcase_35 AC 84 ms
12,160 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 84 ms
12,032 KB
testcase_39 AC 84 ms
12,032 KB
testcase_40 WA -
testcase_41 AC 83 ms
12,160 KB
testcase_42 WA -
testcase_43 AC 84 ms
12,032 KB
testcase_44 AC 84 ms
12,288 KB
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 84 ms
12,032 KB
testcase_48 AC 92 ms
12,160 KB
testcase_49 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

C0, C1, C2, C3 = gets.split.map(&:to_f)
L, R = gets.split.map(&:to_f)

candidates = [L, R]

# 微分する f'(x) = ax2 + bx + c
a = 3 * C3
b = 2 * C2
c = C1

if a != 0
    d = b**2 - 4 * a * c
    if d >= 0
        candidates << (-b + Math.sqrt(d)) / (2 * a)
        candidates << (-b - Math.sqrt(d)) / (2 * a)
    end
else
    if b != 0
        candidates << (-c / b)
    end
end


candidates.filter! { L <= _1 and _1 <= R }

ans = candidates.map { |x| (C0 + (C1 + (C2 + C3 * x) * x) * x).abs }.min
puts ans
0