Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
113114 王馨桐 环形密码 C++ Accepted 1 MS 276 KB 423 2025-03-15 11:48:27

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; int N,M; int ren=0,bs=0; int live=0; int die[1001]; int a[301]; int main(){ cin >>N>>M; for(int i=1; i<=N; i++){ cin >>a[i]; } live=N+1; while(live!=1){ ren++; if(ren>N){ ren=1; } if(die[ren]==1){ continue; } bs++; if(bs==M){ cout <<a[ren]<<" "; die[ren]=1; bs=0; live--; M=a[ren]; } } return 0; }