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
#include<bits/stdc++.h>
using namespace std;

set<long long> S;
long long tab[31];

int main()
{
    long long a, b;
    cin >> a >> b;

    for(long long x = 0; x < a; x++)
    {
        cin >> tab[x];
        if(tab[x] <= b)
        S.insert(tab[x]);
    }

    while(S.size())
    {
        set<long long> :: iterator it = S.begin();

        for(long long x = 0; x < a; x++)
        {
            if(*it * tab[x] <= b)
                S.insert(*it * tab[x]);
        }

                if(S.size() == 1)
                {
                    cout << *it;
                    return 0;
                }

                S.erase(S.begin());
    }

return 0;
}