3 条题解

  • 0
    @ 2025-5-11 20:16:46
    #include<bits/stdc++.h>
    using namespace std;
    double x,y;
    int main(){
        cin>>x;
        if(x<5)
            y=2.5-x;
        else if(x<10)
            y=2-1.5*(x-3)*(x-3);
        else
            y=x/2-1.5;
        cout<<fixed<<setprecision(3)<<y;
        return 0;
    }
    

    信息

    ID
    4497
    时间
    1000ms
    内存
    128MiB
    难度
    1
    标签
    (无)
    递交数
    125
    已通过
    81
    上传者