Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
76707 | 何嘉乐 | 猴子选大王 | C++ | Accepted | 1 MS | 268 KB | 429 | 2024-06-02 16:44:37 |
#include<bits/stdc++.h> using namespace std; int main(){ int m,n; cin>>n>>m; int die[n+1]={0};//一开始所有人都活着设为0 int sr=0; int ren=0,bao=0; while(sr!=n-1){ ren++; if(ren>n){ ren=1; } if(die[ren]==0){ bao++; if(bao==m){ die[ren]=1;// bao=0; sr++; } } } for(int i=1;i<=n;i++){ if(die[i]==0){ cout<<i; } } return 0; }