-
Notifications
You must be signed in to change notification settings - Fork 131
/
PFG_CODECHEF.cpp
75 lines (52 loc) · 1.06 KB
/
PFG_CODECHEF.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
#include <bits/stdc++.h>
using namespace std;
int main() {
long i, j, k, t, n, m, u, q;
cin>>t;
for(u=0; u<t; u++)
{
cin>>n;
long arr[n];
for(i=0; i<n; i++)
{
cin>>arr[i];
}
long mxf = 0;
//for(i=0; i<n; i++)
//{
// long temp = 0;
// for(j=0; j<i; j++)
// {
// if(arr[j]%arr[i]==0)
// {
// temp++;
// }
// }
// mxf = max(mxf, temp);
//}
map<long, long> ms;
for(i=0; i<n; i++)
{
long temp = 0;
temp = ms[arr[i]];
mxf = max(temp, mxf);
for(j=1; j<=sqrt(arr[i]); j++)
{
if(arr[i]%j==0)
{
if(arr[i]/j == j)
{
ms[j]++;
}
else
{
ms[j]++;
ms[arr[i]/j]++;
}
}
}
}
cout<<mxf<<"\n";
}
return 0;
}