//yukicoder@cpp17 #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; using ll = long long; using P = pair; const ll MOD = 998244353; const ll MODx = 1000000007; const int INF = (1<<30)-1; const ll LINF = (1LL<<62LL)-1; const double EPS = (1e-10); P ar4[4] = {{0,1},{0,-1},{1,0},{-1,0}}; P ar8[8] = {{-1,-1},{-1,0},{-1,1},{0,-1},{0,1},{1,-1},{1,0},{1,1}}; template vector make_vector(size_t a, T b) { return vector(a, b); } template auto make_vector(size_t a, Ts... ts) { return vector(a, make_vector(ts...)); } /* 確認ポイント cout << fixed << setprecision(n) << 小数計算//n桁の小数表記になる 計算量は変わらないが楽できるシリーズ min(max)_element(iter,iter)で一番小さい(大きい)値のポインタが帰ってくる count(iter,iter,int)でintがiterからiterの間にいくつあったかを取得できる */ /* function corner below */ struct SieveEratos{ vector t; vector primes; SieveEratos(int n):t(n+1,true){ t[0] = t[1] = false; for(int i = 2; n >= i; i++){ if(t[i]){ primes.emplace_back(i); for(int j = i+i; n >= j; j+=i){ t[j] = false; } } } } bool operator[](int x){return t[x];} }; /* Function corner above */ __attribute__((constructor)) void initial() { cin.tie(0); ios::sync_with_stdio(false); } int main(){ int n;cin>>n; set X; for(int i = 0; n > i; i++){ int x;cin>>x;X.insert(x); } SieveEratos A(5000001); set nw; int prev = 1; int ans = -1; bool primes = false; for(int i = 1; 5000000 >= i; i++){ if(A[i]){ string x = to_string(i); bool ok = true; for(int j = 0; x.size() > j; j++){ if(!X.count(x[j]-'0')){ ok = false; } } if(!ok){ if(nw.size() == X.size()){ ans = max(ans,i-prev-1); //cout << prev << " " << i << endl; } nw.clear(); prev = i+1; primes = false; }else{ primes = true; for(int j = 0; x.size() > j; j++){ //cout << "!!" << endl; nw.insert(x[j]-'0'); } } } } cout << max(ans,(5000000-prev?5000000-prev:-1)) << endl; }