結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
5,248 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 9 ms
5,248 KB
testcase_04 AC 9 ms
5,248 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 9 ms
5,248 KB
testcase_10 AC 9 ms
5,248 KB
testcase_11 AC 9 ms
5,248 KB
testcase_12 WA -
testcase_13 AC 10 ms
5,248 KB
testcase_14 AC 9 ms
5,248 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 9 ms
5,248 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 9 ms
5,248 KB
testcase_31 AC 9 ms
5,248 KB
testcase_32 AC 9 ms
5,248 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 10 ms
5,248 KB
testcase_37 AC 9 ms
5,248 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 9 ms
5,248 KB
testcase_41 WA -
testcase_42 AC 9 ms
5,248 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 9 ms
5,248 KB
testcase_46 AC 10 ms
5,248 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 8 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};

ld 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;
    ld 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