11 条题解

  • -1
    @ 2023-12-24 17:21:38

    #include<bits/stdc++.h> using namespace std; int main() { double x,y; cin>>x; if(x<=1) { y=1.5; } else { y=(x-1)*0.8+1.5; } cout<<y; return 0; }

    信息

    ID
    26
    时间
    1000ms
    内存
    256MiB
    难度
    2
    标签
    递交数
    168
    已通过
    107
    上传者