Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
100583 冯瀚翔 08打车费用 C++ Accepted 1 MS 268 KB 272 2024-12-08 14:21:50

Tests(10/10):


Code:

#include <iostream> using namespace std; int main() { int a; cin >>a; if (a<=2) { cout<<6; } else if (a<=10) { cout<<(a-2)*1.8+6; } else { cout<<(6+(10-2)*1.8)+(a-10)*(1.8*1.5); } return 0; }