1 条题解

  • 0
    @ 2023-7-29 11:01:25
    #include<bits/stdc++.h>
    using namespace std;
    double f(double a){
        return 114*a*a-514*a;
    }
    int main(){
        double mi=1111111111111111;
        //cout<<f(1.1)<<endl;
        for (int i=1;i<=20000000;i++){
            if (f(i/1000000.0)<mi){
                mi=f(i/1000000.0);
            }
        }
        cout<<fixed<<setprecision(6)<<mi;
        return 0;
    }
    
    • 1

    信息

    ID
    386
    时间
    1000ms
    内存
    256MiB
    难度
    8
    标签
    递交数
    17
    已通过
    6
    上传者