結果

問題 No.12 限定された素数
ユーザー GOTKAKOGOTKAKO
提出日時 2024-08-04 15:03:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 1,447 bytes
コンパイル時間 2,484 ms
コンパイル使用メモリ 211,244 KB
実行使用メモリ 31,192 KB
最終ジャッジ日時 2024-08-04 15:03:49
合計ジャッジ時間 6,573 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
30,896 KB
testcase_01 AC 104 ms
31,084 KB
testcase_02 AC 107 ms
31,192 KB
testcase_03 AC 105 ms
31,080 KB
testcase_04 AC 102 ms
31,044 KB
testcase_05 AC 102 ms
30,916 KB
testcase_06 AC 102 ms
31,084 KB
testcase_07 AC 111 ms
31,036 KB
testcase_08 AC 104 ms
31,044 KB
testcase_09 AC 104 ms
31,084 KB
testcase_10 AC 104 ms
31,024 KB
testcase_11 AC 107 ms
31,020 KB
testcase_12 AC 109 ms
31,032 KB
testcase_13 AC 104 ms
31,108 KB
testcase_14 AC 105 ms
31,036 KB
testcase_15 AC 105 ms
30,892 KB
testcase_16 AC 103 ms
31,080 KB
testcase_17 AC 132 ms
31,052 KB
testcase_18 AC 106 ms
31,040 KB
testcase_19 AC 102 ms
30,920 KB
testcase_20 AC 105 ms
31,032 KB
testcase_21 AC 106 ms
31,076 KB
testcase_22 AC 102 ms
30,920 KB
testcase_23 AC 102 ms
30,900 KB
testcase_24 AC 103 ms
31,076 KB
testcase_25 AC 103 ms
30,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);

    int Need = 5000000;
    vector<int> allp;
    vector<bool> prime(Need+1,true);
    prime.at(0) = false; prime.at(1) = false;
    for(int i=2; i<=Need; i++){
        if(!prime.at(i)) continue;
        allp.push_back(i);
        for(long long k=((long long)i)*i; k<=Need; k+=i) prime.at(k) = false;
    }
    
    int n = allp.size();
    vector<int> use(n);
    for(int i=0; i<n; i++){
        int p = allp.at(i);
        int now = 0;
        while(p) now |= (1<<(p%10)),p /= 10;
        use.at(i) = now;
    }
    vector<vector<int>> next(n,vector<int>(10,n));
    for(int i=n-1; i>=0; i--){
        for(int k=0; k<10; k++){
            if(use.at(i)&(1<<k)) next.at(i).at(k) = i;
            else if(i != n-1) next.at(i).at(k) = next.at(i+1).at(k);
        }
    }

    int N; cin >> N;
    int A = 0;
    while(N--){
        int a; cin >> a;
        A += 1<<a;
    }

    allp.push_back(5000001);
    int answer = -1;
    for(int i=0; i<n; i++){
        int one = -1,two = n;
        for(int k=0; k<10; k++){
            if(A&(1<<k)) one = max(one,next.at(i).at(k));
            else two = min(two,next.at(i).at(k));
        }
        if(one >= two) continue;
        if(i == 0) answer = max(answer,allp.at(two)-1-1);
        else answer = max(answer,allp.at(two)-1-(allp.at(i-1)+1));
    }

    cout << answer << endl;
}
0