Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
125497 | 胡德滔 | 快递费计算 | C++ | 解答错误 | 0 | 0 MS | 236 KB | 260 | 2024-01-23 17:03:49 |
#include<iostream> #include<cstdio> using namespace std; int main() { int s,w; cin>>s,w; if (s==1&&w<1) cout<<8; else if (s==1&&w>1) cout<<(8+(w-1)*1); else if (s==0&&w<1) cout<<10; else if (s==0&&w>1) cout<<(10+(w-1)*2); return 0; }