Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
8279 沈文佳 小鱼的航程(改进版) C++ 解答错误 25 0 MS 244 KB 235 2020-10-31 19:07:54

Tests(1/4):


#include<bits/stdc++.h> using namespace std; int main(){ int n,x,z=0; cin>>x>>n; if(x<=5) z=5-x+1,n-=z; else n=n-(7-x); int p=n/7,q=n%7; n=n-2*p-q; z+=n; if(q<=5) z+=q; else z+=5; z*=250; cout<<z; return 0; }


测评信息: