Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include<bits/stdc++.h>
- using namespace std;
- typedef long long int ll;
- typedef unsigned long long int ull;
- typedef vector<int> vi;
- typedef vector<ll> vll;
- typedef vector<vi> vvi;
- typedef pair<int,int > pii;
- typedef vector< pii > vpii;
- typedef set<int> sti;
- #define sc scanf
- #define pf printf
- #define sci(n) scanf("%d",&n)
- #define scl(n) scanf("%lld",&n)
- #define scf(n) scanf("%lf",&n)
- #define scs(s) scanf("%s",s)
- #define pfi(n) printf("%d",n)
- #define pfl(n) printf("%lld",n)
- #define pff(n) cout<<n
- #define line printf("\n")
- #define spc printf(" ")
- #define loop(i,x,y) for(int i=int(x); i<=int(y); i++)
- #define rloop(i,y,x) for(int i=int(y); i>=int(x); i--)
- #define cspf(i) printf("Case %d: ", i)
- #define pb push_back
- #define mp make_pair
- #define ff first
- #define ss second
- #define all(v) v.begin(),v.end()
- #define rall(v) v.rbegin(),v.rend()
- #define read() freopen("input.txt", "r", stdin)
- #define write() freopen("output.txt", "w", stdout)
- /// Constants
- #define eps 1e-9
- #define PI acos(-1.0) // 3.1415926535897932
- vi chk(40000);
- void seive(){
- chk[0]=1;
- chk[1]=1;
- for(int i=2;i<=35000;i++){
- if(chk[i]==1)
- continue;
- for(int j=2;i*j<=35000;j++){
- chk[i*j]=1;
- }
- }
- }
- int main()
- {
- seive();
- int n,x,cnt;
- while(1){
- sci(n);
- if(n==0) break;
- cnt=0;
- loop(i,2,n/2){
- if(chk[i]==0){
- x=n-i;
- if(chk[x]==0)
- cnt++;
- }
- }
- pfi(cnt);line;
- }
- return 0;
- }
Add Comment
Please, Sign In to add comment