Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
81010 李雨昊 报数问题 C++ Accepted 1 MS 272 KB 274 2024-07-12 08:36:03

Tests(5/5):


Code:

#include<iostream> using namespace std; int a[1005]; int main(){ int n,m; cin>>n>>m; int cnt=0,t=0,i=1; while(cnt<n){ if(a[i]==0){ t++; if(t==m){ cnt++; cout<<i<<" "; a[i]=1; t=0; } } i++; if(i>n){ i=1; } } }