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
#include"bits/stdtr1c++.h"
using namespace std;
set <unsigned long long> set2;
set<unsigned long long>::iterator it;
long long a,b;
vector <int> p;
void bodoj()
{
    set2.insert(1);
    while(1)
    {
        it=set2.begin();
        if(*it>b/p[0])return;
        for(int i=0;i<a;i++)
        {
            if(*it*p[i]<=b)
            {
                set2.insert((*it*p[i]));
            }
        }
        set2.erase(it);
    }
}
int main()
{
    ios::sync_with_stdio(0);
    cin.tie(0);
    cin>>a>>b;
    p.resize(a);
    for(int i=0;i<a;i++)
    {
        cin>>p[i];
    }
    sort(p.begin(),p.end());
    bodoj();
    it=set2.end();
    it--;
    cout<<*it;
    return 0;
}