Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
33311 lnx 第n小的质数 C++ 通过 0 MS 256 KB 454 2023-12-08 17:07:30

Tests(1/1):


#include<bits/stdc++.h> using namespace std; bool IsPrime(int n) { if(n<=1) return false; for(int i=2;i<=sqrt(n);i++) { if((n%i)==0) return false; } return true; } int main() { int n,cnt=0,i=1; cin>>n; while(i) { i++; /*for(int j=2;j<=sqrt(i);j++) { if(i%j==0); break; } cnt++;*/ bool yes=IsPrime(i); if(yes) cnt++; if(cnt==n) { cout<<i; break; } } return 0; }


测评信息: