-
Notifications
You must be signed in to change notification settings - Fork 22
/
CHEFPRMS.cpp
77 lines (62 loc) · 1.11 KB
/
CHEFPRMS.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
bool prime[202];
void isprime(ll n)
{ memset(prime,true,sizeof(prime));
prime[0]=false;
prime[1]=false;
for(ll i=2;i*i<=n;i++)
{
if(prime[i]==true)
{
for(ll p=i*2;p<=n;p+=i)
prime[p]=false;
}
}
}
bool primefactor(ll j)
{ll flag1=0,i;
for( i=1;i*i<=j;i++)
{
if((j%i==0)&&((j/i)!=i))
{
if(prime[i]&&prime[(j/i)])
{
flag1=1;
break;
}
}
}
if(flag1==1)
{
return true;
}
else
return false;
}
int main()
{ios_base::sync_with_stdio(false);
cin.tie(NULL);
ll t;
cin>>t;
isprime(201);
while(t--)
{
ll n,j;
cin>>n;
ll flag=0;
for(j=2;j<=n/2;j++)
{
if(primefactor(j)&&primefactor(n-j))
{
flag=1;
}
}
if(flag==1)
cout<<"YES\n";
else
cout<<"NO"<<endl;
}
return 0;
}