5 条题解

  • 0
    @ 2023-2-23 16:21:33
    #include<bits/stdc++.h>
    using namespace std;
    int main(){
    	for(int i=1;i<=500;i++){
    		if(i%3==2&&i%5==3&&i%7==2){
    			cout<<i<<endl;
    		}
    	}
    	return 0;
    	}
    
    

    信息

    ID
    14
    时间
    1000ms
    内存
    16MiB
    难度
    3
    标签
    递交数
    390
    已通过
    219
    上传者