1 条题解

  • 0
    @ 2025-4-5 18:23:39
    #include<bits/stdc++.h>
    using namespace std;
    int main(){
    	double m;
    	cin>>m;
    	if(m<=20){
    		printf("%0.2lf",m*1.68);
    	}else{
    		printf("%0.2lf",m*1.98);
    	}
    	return 0;
    }
    
    • 1

    信息

    ID
    583
    时间
    1000ms
    内存
    64MiB
    难度
    5
    标签
    递交数
    46
    已通过
    19
    上传者