Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
8241 | 李思贤 | 小鱼的航程(改进版) | C++ | 解答错误 | 25 | 0 MS | 248 KB | 203 | 2020-10-31 18:52:23 |
#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>4) b=4; day=week*5; sum=250*day+250*b; cout<<sum; return 0; }