結果

問題 No.2970 三次関数の絶対値
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-11-30 08:39:50
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 657 bytes
コンパイル時間 2,881 ms
コンパイル使用メモリ 243,208 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-30 08:39:56
合計ジャッジ時間 5,046 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 6 ms
5,248 KB
testcase_02 AC 11 ms
5,248 KB
testcase_03 AC 14 ms
5,248 KB
testcase_04 AC 6 ms
5,248 KB
testcase_05 AC 6 ms
5,248 KB
testcase_06 AC 6 ms
5,248 KB
testcase_07 AC 6 ms
5,248 KB
testcase_08 AC 6 ms
5,248 KB
testcase_09 AC 10 ms
5,248 KB
testcase_10 AC 10 ms
5,248 KB
testcase_11 AC 22 ms
5,248 KB
testcase_12 AC 6 ms
5,248 KB
testcase_13 AC 7 ms
5,248 KB
testcase_14 AC 11 ms
5,248 KB
testcase_15 AC 7 ms
5,248 KB
testcase_16 AC 12 ms
5,248 KB
testcase_17 AC 6 ms
5,248 KB
testcase_18 AC 7 ms
5,248 KB
testcase_19 AC 6 ms
5,248 KB
testcase_20 AC 6 ms
5,248 KB
testcase_21 AC 5 ms
5,248 KB
testcase_22 AC 6 ms
5,248 KB
testcase_23 AC 6 ms
5,248 KB
testcase_24 AC 6 ms
5,248 KB
testcase_25 AC 6 ms
5,248 KB
testcase_26 AC 55 ms
5,248 KB
testcase_27 AC 6 ms
5,248 KB
testcase_28 AC 6 ms
5,248 KB
testcase_29 AC 7 ms
5,248 KB
testcase_30 AC 5 ms
5,248 KB
testcase_31 AC 14 ms
5,248 KB
testcase_32 AC 47 ms
5,248 KB
testcase_33 AC 38 ms
5,248 KB
testcase_34 AC 6 ms
5,248 KB
testcase_35 AC 5 ms
5,248 KB
testcase_36 AC 5 ms
5,248 KB
testcase_37 AC 14 ms
5,248 KB
testcase_38 AC 34 ms
5,248 KB
testcase_39 AC 11 ms
5,248 KB
testcase_40 AC 42 ms
5,248 KB
testcase_41 AC 30 ms
5,248 KB
testcase_42 AC 83 ms
5,248 KB
testcase_43 AC 39 ms
5,248 KB
testcase_44 AC 6 ms
5,248 KB
testcase_45 AC 10 ms
5,248 KB
testcase_46 AC 14 ms
5,248 KB
testcase_47 AC 35 ms
5,248 KB
testcase_48 AC 6 ms
5,248 KB
testcase_49 AC 36 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define For(i, a, b) for(int i = a; i < b; i++)
#define rep(i, n) For(i, 0, n)
#define rFor(i, a, b) for(int i = a; i >= b; i--)
#define ALL(v) (v).begin(), (v).end()
#define rALL(v) (v).rbegin(), (v).rend()
using namespace std;

using lint = long long;
using ld = long double;

int INF = 2000000000;
lint LINF = 1000000000000000000;

int main() {
    ld c0, c1, c2, c3, l, r;
    cin >> c0 >> c1 >> c2 >> c3 >> l >> r;
    ld ans = INF;
    for (ld x = l; x <= r; x += 0.000001) {
        ld y = abs(c0 + c1 * x + c2 * x * x + c3 * x * x * x);
        ans = min(ans, y);
    }
    cout << fixed << setprecision(6) << ans << endl;
}
0