Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
8451 | 张承志 | 小鱼的航程(改进版) | C++ | 通过 | 100 | 2 MS | 244 KB | 272 | 2020-10-31 20:16:02 |
#include<bits/stdc++.h> using namespace std; int main(){ int n,x,z=0; cin>>x>>n; for(int i=1;i<=n;i++){ if(x!=6&&x!=7) z+=250; x++; if(x==8) x=1; } // int p=n/7,q=n%7; // n=n-2*p-q; // z+=n; // if(q<=5) z+=q; // else z+=5; cout<<z; return 0; }