結果

問題 No.12 限定された素数
ユーザー momoyuumomoyuu
提出日時 2023-03-15 22:26:19
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,405 bytes
コンパイル時間 2,944 ms
コンパイル使用メモリ 247,872 KB
実行使用メモリ 23,860 KB
最終ジャッジ日時 2024-09-18 08:56:06
合計ジャッジ時間 6,018 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
22,708 KB
testcase_01 AC 72 ms
22,716 KB
testcase_02 AC 70 ms
22,860 KB
testcase_03 RE -
testcase_04 AC 72 ms
22,744 KB
testcase_05 AC 69 ms
22,684 KB
testcase_06 AC 66 ms
22,820 KB
testcase_07 AC 68 ms
22,712 KB
testcase_08 AC 73 ms
22,792 KB
testcase_09 AC 72 ms
22,752 KB
testcase_10 WA -
testcase_11 AC 69 ms
22,752 KB
testcase_12 AC 70 ms
22,736 KB
testcase_13 AC 79 ms
22,744 KB
testcase_14 WA -
testcase_15 AC 76 ms
22,712 KB
testcase_16 AC 71 ms
22,748 KB
testcase_17 AC 67 ms
22,744 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 70 ms
22,728 KB
testcase_23 AC 75 ms
22,704 KB
testcase_24 AC 72 ms
22,748 KB
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
int main(){
    int n;
    cin>>n;
    vector<int> a(n);
    for(int i = 0;i<n;i++) cin>>a[i];
    
    vector<int> cnt(10,-1);
    for(int i = 0;i<n;i++) cnt[a[i]]=0;

    int R = 5e6;
    int L = 1;
    vector<int> p(R+1,-1);
    p[0] = 1;
    p[1] = 1;
    for(int i = 2;i<=R;i++){
        if(p[i]==1) continue;
        p[i] = 0;
        for(int j = i + i;j<=R;j+=i)p[j]=1;
    }
    int ans = -1;
    int cc = 0;
    int l = 0,r = 0;
    while(l<=R){
        //cout<<l<<" "<<r<<endl;  
        if(p[r]){
            r++;
            continue;
        }
        //cout<<r<<endl;
        bool q = true;
        int m = r;
        while(m){
            int now = m % 10;
            m /= 10;
            if(cnt[now]==-1) q = false;
            else cnt[now]++;
        }
        if(q){
            cc++;
            r++;
            continue;
        }
        if(cc==0){
            l = r = r + 1;
            continue;
        }
        cc = 0;
        int now = r - 1 - l;
        q = true;
        for(int i = 0;i<n;i++){
            if(cnt[a[i]]==0) q = false;
            cnt[a[i]] = 0;
        }
        if(q) ans = max(ans,now);
        //cout<<ans<<" "<<l<<" "<<r<<endl;
        l = r = r + 1;
    }
    bool q = true;
    for(int i = 0;i<n;i++){
        if(cnt[a[i]] == 0) q = false;
    }
    if(q) ans = max(ans,R-l);
    cout<<ans<<endl;    

}

0