#include #include using namespace std; using namespace atcoder; using lint = long long; using ulint = unsigned long long; #define endl '\n' int const INF = 1<<30; lint const INF64 = 1LL<<61; // lint const Mod = 1e9+7; long const mod = 998244353; lint ceilDiv(lint x, lint y){if(x >= 0){return (x+y-1)/y;}else{return x/y;}} lint floorDiv(lint x, lint y){if(x >= 0){return x/y;}else{return (x-y+1)/y;}} lint Sqrt(lint x){lint upper = 1e9;lint lower = 0;while(upper - lower > 0){lint mid = (1+upper + lower)/2;if(mid * mid > x){upper = mid-1;}else{lower = mid;}}return upper;} lint gcd(lint a,lint b){if(a&v){lint ans = INF64;for(lint i:v){ans = min(ans, i);}return ans;} lint chmax(vector&v){lint ans = -INF64;for(lint i:v){ans = max(ans, i);}return ans;} double dist(double x1, double y1, double x2, double y2){return sqrt(pow(x1-x2, 2) + pow(y1-y2,2));} string toString(lint n){string ans = "";if(n == 0){ans += "0";}else{while(n > 0){int a = n%10;char b = '0' + a;string c = "";c += b;n /= 10;ans = c + ans;}}return ans;} string toString(lint n, lint k){string ans = toString(n);string tmp = "";while(ans.length() + tmp.length() < k){tmp += "0";}return tmp + ans;} vectorprime;void makePrime(lint n){prime.push_back(2);for(lint i=3;i<=n;i+=2){bool chk = true;for(lint j=0;j>; lint n; lint a[300000]; void solve(int k, lint bit, vector>&dp) { if(dp[k][bit])return; dp[k][bit] = true; if(k == n)return; lint t = a[k]; for(int i = 0; i < 20; i++) { solve(k+1, bit | t, dp); t = t/2 + (32768) * (t%2); } } int main(){ cin >> n; for(int i = 0; i < n; i++) { cin >> a[i]; } if(n >= 100) { cout << 65535 << endl; } else { lint ans = 0; vector>dp(n+1, vector(1000000, false)); solve(0, 0, dp); for(int j = 0; j <1000000; j++) { if(dp[n][j])ans = j; } cout << ans << endl; } }