//
// Created by yamunaku on 2020/02/11.
//

#include <bits/stdc++.h>

using namespace std;

#define rep(i, n) for(int i = 0; i < (n); i++)
#define repl(i, l, r) for(int i = (l); i < (r); i++)
#define per(i, n) for(int i = ((n)-1); i >= 0; i--)
#define perl(i, l, r) for(int i = ((r)-1); i >= (l); i--)
#define all(x) (x).begin(),(x).end()
#define MOD9 998244353
#define MOD1 1000000007
#define IINF 1000000000
#define LINF 1000000000000000000
#define SP <<" "<<
#define CYES cout<<"Yes"<<endl
#define CNO cout<<"No"<<endl
#define CFS cin.tie(0);ios::sync_with_stdio(false)
#define CST(x) cout<<fixed<<setprecision(x)

using ll = long long;
using ld = long double;
using vi = vector<int>;
using mti = vector<vector<int>>;
using vl = vector<ll>;
using mtl = vector<vector<ll>>;
using pi = pair<int, int>;
using pl = pair<ll, ll>;
template<typename T>
using heap = priority_queue<T, vector<T>, function<bool(const T, const T)>>;

ll gcd(ll x, ll y){
    if(y == 0) return x;
    ll tmp;
    while(x % y){
        tmp = x % y;
        x = y;
        y = tmp;
    }
    return y;
}

ll lcm(ll x, ll y){
    return x / gcd(x, y) * y;
}


int main(){
    // CFS;
    int n;
    cin >> n;
    vl a(n);
    rep(i, n){
        cin >> a[i];
        if(a[i] == -1) a[i] = 0;
    }
    int lg = 0, tmp = 1;
    while(n > tmp) lg++, tmp *= 2;
    rep(t, lg){
        rep(i, n){
            if(i & (1 << t)){
                if((i ^ (1 << t)) < n) a[i ^ (1 << t)] += a[i];
            }
        }
    }
    rep(i, n){
        a[i] = a[i] * a[i]; // ここオーバーフロー
    }
    rep(t, lg){
        rep(i, n){
            if(i & (1 << t)){
                if((i ^ (1 << t)) < n) a[i ^ (1 << t)] -= a[i];
            }
        }
    }
    ll ans = a[0];
    repl(i, 1, n){
        ans = gcd(ans, a[i]);
    }
    if(ans == 0) cout << -1 << endl;
    else cout << ans << endl;
    return 0;
}