#include #include #include #include using namespace std; vector A; set Nya; int n,k; int ans; void DFS(int nw,int k){ if(ans >= k)return; if(nw == n){ ans = max(ans,k); } for(int i = 1; n >= i; i++){ if(Nya.find(i) != Nya.end()){ continue; } Nya.insert(i); DFS(nw+1,k%A[i-1]); Nya.erase(i); } } int main(){ cin>>n>>k; assert(20 >= n); assert(n >= 1); assert(1000000000 >= k); assert(k >= 1); for(int i = 0; n > i; i++){ int T;cin>>T; A.push_back(T); } DFS(0,k); cout << ans << endl; }