Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
100581 | 唐诗阳 | 08打车费用 | C++ | Accepted | 1 MS | 272 KB | 403 | 2024-12-08 14:15:34 |
#include<iostream> #include<cstdio> //scanf()\printf() #include<cstring> #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int km,y,n; cin>>km; if(km<=2){ cout<<6; } else if(km>2 && km<=10){ cout<<6+(km-2)*1.8; } else{ cout<<(6+(10-2)*1.8)+(km-10)*(1.8*1.5); } return 0; }