Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
111528 陈昊然 杀人游戏 C++ Compile Error 0 MS 0 KB 347 2025-03-02 15:20:14

Tests(0/0):


Code:

#include<bits/stdc++.h> using namespace std; int n,m; int hz[1000]; int main() { cin>>n>>m; int ren=0; iny bs=0; int live=n; while(live !=1) { ren++; if(ren==n+1){ ren=1; } if(hz[ren]==1){ continue; } bs++; if(bs==m){ hz[ren]=1; cout<<ren<<" "; bs=0; live--; } } return 0; }


Run Info:

Main.cc: In function 'int main()':
Main.cc:8:2: error: 'iny' was not declared in this scope
  iny bs=0;
  ^
Main.cc:18:3: error: 'bs' was not declared in this scope
   bs++;
   ^