5 条题解

  • -1
    @ 2024-9-30 21:09:14
    #include<bits/stdc++.h>
    using namespace std;
    int main(){
    	int N,M;
    	cin >>N>>M;
    	int a[N + 1] = {0}; 
    	for(int i=1;i<=M;i++){
    		for(int j = 1;j <= N;j++){
    			if(j % i == 0){
    				a[j] = !a[j];
    			}
    		}
    	} 
    	for(int i = 1;i <= N;i++){
    		if(a[i] == 0)
    			cout<<i<<" ";
    	}
    }
    
    

    信息

    ID
    486
    时间
    1000ms
    内存
    256MiB
    难度
    4
    标签
    递交数
    185
    已通过
    55
    上传者