| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 125386 | 黄本瀚 | 快递费计算 | C++ | Wrong Answer | 0 | 0 MS | 248 KB | 244 | 2024-01-23 16:51:22 |
#include<iostream> using namespace std; int main() { int a,b; cin>>a>>b; if(a=1&&b>1){ cout<<8+(b-1); } if(a=1&&b<=1){ cout<<8*b; } if(a=0&&b<=1){ cout<<10; } if(a=0&&b>1){ cout<<10+(b-1); } return 0; }