Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
126740 | 王培用 | 08打车费用 | C++ | Accepted | 1 MS | 268 KB | 206 | 2025-07-21 15:19:49 |
#include<bits/stdc++.h> using namespace std; int main(){ int a; cin>>a; double d=0; if(a<=2){ d=6; } else if(a<=10){ d=(a-2)*1.8+6; } else{ d=(a-10)*2.7+6+1.8*8; } cout<<d; return 0; }