标签:没有 ios desc 表示 ace dem style type reac
#include<iostream> #include<stdio.h> #include<string.h> using namespace std; int vis[300001]; int main(){ int n,m; while(cin>>n>>m){ int i,k,s=0; memset(vis,0,sizeof(vis)); vis[0]=1; for(k=0;k<n;k++){ i=0; while(i<m){ s++; if(s>n) s-=n; if(!vis[s]) i++; } vis[s]=1; } cout<<s<<endl; } return 0; }
标签:没有 ios desc 表示 ace dem style type reac
原文地址:https://www.cnblogs.com/Lazy-Cat/p/9838168.html