結果

問題 No.12 限定された素数
ユーザー CleyLCleyL
提出日時 2022-07-31 15:02:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 118 ms / 5,000 ms
コード長 2,765 bytes
コンパイル時間 1,065 ms
コンパイル使用メモリ 119,616 KB
実行使用メモリ 5,992 KB
最終ジャッジ日時 2023-09-28 04:08:00
合計ジャッジ時間 4,700 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
5,856 KB
testcase_01 AC 76 ms
5,684 KB
testcase_02 AC 69 ms
5,684 KB
testcase_03 AC 118 ms
5,740 KB
testcase_04 AC 69 ms
5,736 KB
testcase_05 AC 84 ms
5,964 KB
testcase_06 AC 94 ms
5,992 KB
testcase_07 AC 101 ms
5,800 KB
testcase_08 AC 80 ms
5,740 KB
testcase_09 AC 78 ms
5,856 KB
testcase_10 AC 84 ms
5,828 KB
testcase_11 AC 117 ms
5,740 KB
testcase_12 AC 100 ms
5,856 KB
testcase_13 AC 88 ms
5,764 KB
testcase_14 AC 80 ms
5,992 KB
testcase_15 AC 89 ms
5,736 KB
testcase_16 AC 112 ms
5,768 KB
testcase_17 AC 64 ms
5,640 KB
testcase_18 AC 68 ms
5,728 KB
testcase_19 AC 66 ms
5,736 KB
testcase_20 AC 72 ms
5,852 KB
testcase_21 AC 74 ms
5,828 KB
testcase_22 AC 67 ms
5,640 KB
testcase_23 AC 68 ms
5,896 KB
testcase_24 AC 67 ms
5,728 KB
testcase_25 AC 85 ms
5,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//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;
}
0