201712-2 游戏
Posted 辰chen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了201712-2 游戏相关的知识,希望对你有一定的参考价值。
本题链接:201712-2 游戏
本博客给出本题截图:
C++
#include <iostream>
#include <algorithm>
#include <queue>
using namespace std;
int main()
{
int n, k;
cin >> n >> k;
queue<int> q;
for (int i = 1; i <= n; i ++ ) q.push(i);
int j = 1;
while (q.size() > 1)
{
int t = q.front();
q.pop();
if (j % k && j % 10 != k) q.push(t);
j ++ ;
}
cout << q.front() << endl;
return 0;
}
总结
以上是关于201712-2 游戏的主要内容,如果未能解决你的问题,请参考以下文章