Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
126745 | 陈冠樾 | 08打车费用 | C++ | Accepted | 1 MS | 268 KB | 258 | 2025-07-21 15:34:47 |
#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; }