Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
113118 | 胡盛哲 | 环形密码 | C++ | Wrong Answer | 1 MS | 276 KB | 447 | 2025-03-15 11:51:49 |
#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; while(live != 0){ ren++; if(ren>n){ ren=1; } if(die[ren]==1){ continue; } bs++; if(bs==m){ cout << ren<< " "; die[ren]=1; bs=0; live--; m=a[ren]; } } return 0; }
------Input------
10 3 8 3 6 3 4 10 3 10 3 2
------Answer-----
6 3 3 10 8 3 3 2 10 4
------Your output-----
3 9 2 6 1 7 4 10 8 5