Skip to content

Instantly share code, notes, and snippets.

@lp6m
Created November 14, 2014 16:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lp6m/4dc4cd81b8f1b39037cc to your computer and use it in GitHub Desktop.
Save lp6m/4dc4cd81b8f1b39037cc to your computer and use it in GitHub Desktop.
#include <iostream>
#include <algorithm>
#include <vector>
#include <stack>
#include <queue>
#include <map>
#include <cmath>
#include <string>
#include <sstream>
#include <iomanip>
#include <complex>
using namespace std;
#define ll long long
#define vvi vector< vector<int> >
#define All(X) X.begin(),X.end()
#define FOR(i,a,b) for(int i=(int)(a);i<(int)(b);i++)
#define REP(i,n) for(int i=0;i<(int)(n);i++)
#define pb push_back
ll gcd(ll a,ll b){return b?gcd(b,a%b):a;}
ll lcm(ll a,ll b){return a/gcd(a,b)*b;}
#define MaxNum 260000
bool isprime[MaxNum];
void makeprime(){
REP(i,MaxNum) isprime[i] = true;
FOR(i,2,(int)sqrt(MaxNum)+1){
FOR(j,i+1,MaxNum){
if(j%i==0) isprime[j] = false;
}
}
}
int main(){
ll int tmp;
makeprime();
while(cin>>tmp,tmp){
ll int ans = 0;
FOR(i,tmp+1,2*tmp+1){
if(isprime[i]) ans++;
}
cout << ans << endl;
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment