Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
125553 | 王梓荀 | 快递费计算 | C++ | 通过 | 100 | 0 MS | 244 KB | 285 | 2024-01-23 17:12:29 |
#include<iostream> using namespace std; int main(){ int s,w,t; cin>>s>>w; if(s==1&&w<=1){ t=8; cout<<t; } else if(s==1&&w>=1){ t=8+1*(w-1); cout<<t; } else if(s==0&&w<=1){ t=10; cout<<t; } else{ t=10+2*(w-1); cout<<t; } return 0; }