Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
125305 | 刘子隽bylz | 快递费计算 | C++ | 通过 | 100 | 0 MS | 248 KB | 248 | 2024-01-23 16:42:49 |
#include <bits/stdc++.h> using namespace std; int main() { int s,w; cin>>s>>w; if(s==1){ if(w<=1) cout<<8 ; else cout<<w-1+8; }if(s==0){ if(w<=1) cout<<10; else cout<<(w-1)*2+10; } return 0; }