| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 8237 | 李思贤 | 小鱼的航程(改进版) | C++ | Wrong Answer | 25 | 0 MS | 252 KB | 203 | 2020-10-31 18:50:28 |
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,week,day,c,sum=0; cin>>a>>b; week=b/7; b=b-week*7; if(b>5) b=5; day=week*5; sum=250*day+250*b; cout<<sum; return 0; }