Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
125486 | 汤雨帆 | 快递费计算 | C++ | 通过 | 100 | 0 MS | 240 KB | 236 | 2024-01-23 17:02:37 |
#include<iostream> #include<bits/stdc++.h> using namespace std; int main(){ int s; int w; cin>>s>>w; if(s==1&&w<1) cout<<"8"; if(s==0&&w<1) cout<<"10"; if(s==1&&w>1) cout<<7+w; if(s==0&&w>1) cout<<8+2*w; }