Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
8264 | 刘逸杭 | 14小鱼游泳 | C++ | Wrong Answer | 0 MS | 264 KB | 243 | 2025-06-21 21:53:51 |
#include<iostream> using namespace std; int main(){ int x,n,a=0; cin>>x>>n; for(int i=1;i<=n;i++){ if(x%6==0||x%7==0){ x++; continue; } a++; x++; } cout<<a*250; return 0; }
------Input------
4 76
------Answer-----
13500
------Your output-----
13250