-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path69439644.cpp
52 lines (51 loc) · 892 Bytes
/
69439644.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
#include <bits/stdc++.h>
using namespace std;
int main()
{
int t;
cin>>t;
for(int i=0;i<t;i++)
{
int n;
int a,b,c;
cin>>n;
int j=2;
while( j<= n )
{
if(n%j==0) break;
j++;
if(j>sqrt(n)+5)
j=n;
}
if(j==n)
{
cout<<"NO"<<endl;
continue;
}
a=j;
n/=j;
j++;
while(j<=n)
{
if(n%j==0) break;
j++;
if(j>sqrt(n)+5)
j=n;
}
if(j>=n)
{
cout<<"NO"<<endl;
continue;
}
b=j;
c=n/j;
if(c== a || c==b)
{
cout<<"NO"<<endl;
continue;
}
cout<<"YES"<<endl;
cout<<a<<" "<<b<<" "<<c<<endl;
}
return 0;
}