-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathB.cpp
More file actions
55 lines (53 loc) · 1001 Bytes
/
B.cpp
File metadata and controls
55 lines (53 loc) · 1001 Bytes
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 n,x,y;
cin>>n;
vector <int> v(n);
vector <int> a;
for(int i=0;i<n;i++)
cin>>v[i];
sort(v.begin(),v.end());
x=v[n-1];
for(int i=0;i<n;i++)
{
y=v[i];
for(int j=1;j<=x;j++)
{
if(x%j==0)
a.push_back(j);
}
for(int j=1;j<=y;j++)
{
if(y%j==0)
a.push_back(j);
}
if(a.size()==n)
{
sort(a.begin(),a.end());
bool b=true;
for(int k=0;k<n;k++)
{
if(a[k]!=v[k])
{
b=false;
break;
}
}
if(b)
{
cout<<x<<' '<<y;
}
else
{
a.clear();
}
}
else
{
a.clear();
}
}
return 0;
}