| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 8280 | 季洁 | 小鱼的航程(改进版) | C++ | Wrong Answer | 50 | 3 MS | 252 KB | 186 | 2020-10-31 19:08:14 |
#include<bits/stdc++.h> using namespace std; int x,n,ans=0; int main(){ cin>>x>>n; for(int i=x;i<=x+n-1;i++){ if(!(i%7==0||i%7==1)) ans+=250; } cout<<ans; return 0; }