Problem hidden
|This problem was hidden by Editorial Board member probably because it has incorrect language|version or invalid test data, or description of the problem is not clear.|

CCPPRI01 - PRIME 1

Cho số nguyên dương N. Hãy đưa ra tất cả các ước số nguyên tố của N.

Input

Dòng đầu tiên đưa vào số lượng bộ test T.

Những dòng kế tiếp đưa vào T bộ test. Mỗi bộ test là  một số nguyên dương N được ghi trên một dòng. 

T, N thỏa mãn ràng buộc: 1≤T≤100; 2≤N≤1010 .

Output

Đưa ra kết quả mỗi test theo từng dòng.

Example

InputOutput
2
315
31
3 3 5 7
31


Được gửi lên bởi:adm
Ngày:2019-10-19
Thời gian chạy:1s
Giới hạn mã nguồn:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Ngôn ngữ cho phép:C C++ 4.3.2 CPP

hide comments
2020-10-04 22:10:27
#include <iostream>
#include <cmath>
using namespace std;
typedef unsigned long long ull;

void function(ull n)
{
ull i;
while(n%2==0)
{ cout<<2<<" ";
n/=2;
}
for(i=3;i<=sqrt(n);i+=2)
while(n%i==0)
{ cout<<i<<" ";
n/=i;
}
if(n>1) cout<<n;
}


int main()
{
short T;
ull n;
cin>>T;
while(T--)
{ cin>>n;
function(n);
cout<<endl;
}
return 0;
}
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.