結果

問題 No.2970 三次関数の絶対値
ユーザー makichanmakichan
提出日時 2024-11-29 21:45:44
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 8 ms / 2,000 ms
コード長 839 bytes
コンパイル時間 4,947 ms
コンパイル使用メモリ 307,180 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-29 21:45:52
合計ジャッジ時間 6,039 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using mint = atcoder::static_modint<998244353>;
//using mint = atcoder::static_modint<1000000007>;
using namespace std;
using namespace atcoder;
using ld = long double;
using ll = long long;
#define mp(a,b) make_pair(a,b)
#define rep(i,s,n) for(int i=s; i<n; i++)
const vector<int> dx{1,0,-1,0},dy{0,1,0,-1};

double get(ld x,vector<ll>&c){
    ld out=0;
    ld p=1;
    rep(i,0,4){
        out+=p*c[i];
        p*=x;
    }
    out=abs(out);
    return out;
}
int main(){
    vector<ll> c(4);rep(i,0,4)cin >> c[i];
    int l,r;
    cin >> l >> r;
    int m=1000000;
    double ans=1e18;
    rep(i,0,m+1){
        ld x=l+(r-l)/(ld)m*i;
        ans=min(ans,get(x,c));
    }
    // if(ans<1e-6){
    //     cout << 0;
    // }
    // else cout << setprecision(16)<< ans;
    printf("%f",ans);
}
0