Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
8347 王循 小鱼的航程(改进版) C++ 通过 100 2 MS 248 KB 246 2020-10-31 19:40:33

Tests(4/4):


#include <bits/stdc++.h> using namespace std; int main() { int x,n; long long s=0; cin>>x>>n; for(int i=1;i<=n;i++) { int x2=x+i-1; if(x2%7==0)x2=7; else x2%=7; if(x2!=6&&x2!=7)s+=250; } cout<<s<<endl; return 0; }


测评信息: