結果
| 問題 | No.12 限定された素数 | 
| コンテスト | |
| ユーザー | 👑 | 
| 提出日時 | 2022-07-31 15:02:47 | 
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 145 ms / 5,000 ms | 
| コード長 | 2,765 bytes | 
| コンパイル時間 | 1,340 ms | 
| コンパイル使用メモリ | 116,944 KB | 
| 最終ジャッジ日時 | 2025-01-30 17:02:16 | 
| ジャッジサーバーID (参考情報) | judge4 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 26 | 
ソースコード
//yukicoder@cpp17
#include <iostream>
#include <cmath>
#include <algorithm>
#include <iomanip>
#include <string>
#include <vector>
#include <set>
#include <stack>
#include <queue>
#include <map>
#include <bitset>
#include <complex>
#include <cctype>
#include <utility>
#include <climits>
#include <numeric>
using namespace std;
using ll = long long;
using P = pair<ll,ll>;
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 <typename T> vector<T> make_vector(size_t a, T b) { return vector<T>(a, b); }
template <typename... Ts> auto make_vector(size_t a, Ts... ts) { return vector<decltype(make_vector(ts...))>(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<bool> t;
  vector<int> 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<int> X;
    for(int i = 0; n > i; i++){
        int x;cin>>x;X.insert(x);
    }
    SieveEratos A(5000001);
    set<int> 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;
}
            
            
            
        