8 条题解

  • -1
    @ 2024-2-23 8:29:41

    #include using namespace std; int main(){ bool a[101] = {0}; int n,m,i,f=0,t=0,s=0; cin >> n >> m; do{ ++t; if(t>n){ t = 1; } if(!a[t]){ s++; } if(s==m){ s = 0; cout << t << " "; a[t]=1; f++; } }while(f!=n); } 这样也可以

    信息

    ID
    1029
    时间
    1000ms
    内存
    128MiB
    难度
    5
    标签
    递交数
    360
    已通过
    126
    上传者