Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
126744 袁梓豪 08打车费用 C++ Accepted 1 MS 272 KB 248 2025-07-21 15:34:08

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; int main() { int a; double b; cin >> a; 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; }