标签:btn app ++ active 质数 clu esc body problem
输入区间[L, R],寻找在此区间内的质数。
开区间[L, R]中的整数L,R
在此区间中所有质数的个数n
0 100
25
对于所有数据,L,R<=21000, 区间长度R-L<=4000
#include<iostream> #include<cstdio> #include<cmath> using namespace std; const int N=21000; int vis[N]; int main() { int l,r; cin>>l>>r; vis[0]=1; vis[1]=1; for(int i=2;i<=sqrt(r)+1;i++) { if(vis[i]==0) { for(int j=i*2;j<=r;j+=i) { vis[j]=1; } } } int ans=0; for(int i=l;i<=r;i++) { if(vis[i]==0) { ans++; } } cout<<ans; }
标签:btn app ++ active 质数 clu esc body problem
原文地址:http://www.cnblogs.com/lyqlyq/p/6740472.html