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