-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1176A.cpp
55 lines (43 loc) · 890 Bytes
/
1176A.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
#include<bits/stdc++.h>
using namespace std;
int main()
{
int t;
cin >> t;
long long int num;
for(int i=0; i<t; i++)
{
cin >> num;
long long int count = 0;
int flag = 0;
while(num!=1)
{
if(num%2==0)
{
num /= 2;
count++;
}
else if(num%3==0)
{
num = (2*num)/3;
count++;
}
else if(num % 5 == 0)
{
num = (4*num)/5;
count++;
}
else
{
cout << -1 << endl;
flag = 1;
break;
}
}
if(flag==0)
{
cout << count << endl;
}
}
return 0;
}