2 条题解

  • 2
    @ 2024-9-9 21:21:42

    #include<bits/stdc++.h> using namespace std; int main(){ int n,sum=0; cin>>n; for(int i=2;1;i++){ int cut=0; for(int j=2;j<=sqrt(i);j++){ if(i%j0) { cut++; break; } } if(cut0){ sum++; } if(sum==n){

    	cout<<i;
    	return 0;
    	}
    }
    

    }``

    • 1
      @ 2024-10-7 15:32:25
      #include<bits/stdc++.h>
       using namespace std;
        int main(){ 
        int k,n=0,i;
         cin>>k;
          for(i=2;1;i++){ 
      	int cnt=0;
      	 for(int j=2;j<=sqrt(i);j++){ 
      	 if(i%j==0)
      	   cnt++;
      	 }
      	   if(cnt==0) n++;
      	    if(n==k){
      		 cout<<i;
      		  return 0; 
      		  } 
      		  } 
       }
      • 1

      信息

      ID
      2100
      时间
      1000ms
      内存
      256MiB
      难度
      3
      标签
      递交数
      30
      已通过
      21
      上传者