CCF 201712-2 游戏 100分
Posted 登登登ccc
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CCF 201712-2 游戏 100分相关的知识,希望对你有一定的参考价值。
#include <bits/stdc++.h>
using namespace std;
int main() {
int n,k,res[1001]= {0};
cin>>n>>k;
int count=0,i=0,j=0;//count统计淘汰个数,i为学生报数,j为学生编号
while(count!=n-1) {
i++;
j++;
if(j==n+1)
j=1;
if(res[j]==-1) {
i--;
continue;
}
if(i%k==0||i%10==k) {
count++;
res[j]=-1;
}
}
for(int i=1; i<=n; i++)
if(res[i]==0)
cout<<i;
return 0;
}
以上是关于CCF 201712-2 游戏 100分的主要内容,如果未能解决你的问题,请参考以下文章