結果

問題 No.2970 三次関数の絶対値
ユーザー umezoumezo
提出日時 2024-11-29 22:46:59
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 295 ms / 2,000 ms
コード長 604 bytes
コンパイル時間 2,502 ms
コンパイル使用メモリ 244,500 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-29 22:47:18
合計ジャッジ時間 17,670 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 285 ms
6,816 KB
testcase_01 AC 270 ms
6,816 KB
testcase_02 AC 271 ms
6,820 KB
testcase_03 AC 287 ms
6,816 KB
testcase_04 AC 271 ms
6,816 KB
testcase_05 AC 269 ms
6,820 KB
testcase_06 AC 270 ms
6,816 KB
testcase_07 AC 269 ms
6,816 KB
testcase_08 AC 288 ms
6,820 KB
testcase_09 AC 270 ms
6,816 KB
testcase_10 AC 271 ms
6,816 KB
testcase_11 AC 271 ms
6,820 KB
testcase_12 AC 290 ms
6,820 KB
testcase_13 AC 269 ms
6,820 KB
testcase_14 AC 266 ms
6,820 KB
testcase_15 AC 267 ms
6,816 KB
testcase_16 AC 268 ms
6,816 KB
testcase_17 AC 287 ms
6,820 KB
testcase_18 AC 264 ms
6,816 KB
testcase_19 AC 265 ms
6,820 KB
testcase_20 AC 265 ms
6,816 KB
testcase_21 AC 287 ms
6,816 KB
testcase_22 AC 261 ms
6,816 KB
testcase_23 AC 260 ms
6,816 KB
testcase_24 AC 266 ms
6,820 KB
testcase_25 AC 265 ms
6,816 KB
testcase_26 AC 291 ms
6,820 KB
testcase_27 AC 262 ms
6,816 KB
testcase_28 AC 261 ms
6,816 KB
testcase_29 AC 263 ms
6,820 KB
testcase_30 AC 292 ms
6,816 KB
testcase_31 AC 267 ms
6,816 KB
testcase_32 AC 267 ms
6,816 KB
testcase_33 AC 262 ms
6,816 KB
testcase_34 AC 265 ms
6,820 KB
testcase_35 AC 285 ms
6,816 KB
testcase_36 AC 268 ms
6,820 KB
testcase_37 AC 266 ms
6,816 KB
testcase_38 AC 276 ms
6,816 KB
testcase_39 AC 295 ms
6,820 KB
testcase_40 AC 262 ms
6,816 KB
testcase_41 AC 263 ms
6,816 KB
testcase_42 AC 264 ms
6,820 KB
testcase_43 AC 265 ms
6,820 KB
testcase_44 AC 287 ms
6,820 KB
testcase_45 AC 267 ms
6,816 KB
testcase_46 AC 260 ms
6,816 KB
testcase_47 AC 263 ms
6,820 KB
testcase_48 AC 286 ms
6,816 KB
testcase_49 AC 270 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;
template <class T> using V=vector<T>;
template <class T> using VV=V<V<T>>;

const int MAX=1e8;
 
int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  int c0,c1,c2,c3,l,r;
  cin>>c0>>c1>>c2>>c3>>l>>r;
  
  auto f=[&](double x)->double{
    return c0+c1*x+c2*x*x+c3*x*x*x;
  };
  
  double ans=1e18;
  double d=(r-l)/(double)MAX;
  rep(i,MAX+1){
    double x=l+d*i;
    ans=min(ans,abs(f(x)));
  }
  printf("%.6f\n",ans);
    
  return 0;
}
0