-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathB_Array_Reodering.c
57 lines (39 loc) · 871 Bytes
/
B_Array_Reodering.c
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
#include <stdio.h>
#include <string.h>
int gcd(int a,int b){
if (b==0) return a;
return gcd(b,a%b);
}
int main() {
int t;
scanf("%d",&t);
while (t--)
{
int n;
scanf("%d",&n);
int arr[n];
for (int i=0; i<n; i++){
scanf("%d",&arr[i]);
}
for (int i = 0; i < n; i++) {
for (int j = 0; j < n - i - 1; j++) {
if (arr[j] < arr[j + 1]) {
int temp = arr[j];
arr[j] = arr[j + 1];
arr[j + 1] = temp;
}
}
}
int count=0;
for (int i=0; i<n-1; i++){
for (int j=i+1; j<n; j++){
int x = arr[j]*2;
if (gcd(arr[i],x)>1){
count++;
}
}
}
printf("%d\n",count);
}
return 0;
}