結果
問題 | No.12 限定された素数 |
ユーザー | fura |
提出日時 | 2020-01-02 19:42:29 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 187 ms / 5,000 ms |
コード長 | 1,172 bytes |
コンパイル時間 | 1,982 ms |
コンパイル使用メモリ | 172,856 KB |
実行使用メモリ | 6,572 KB |
最終ジャッジ日時 | 2024-05-03 11:03:42 |
合計ジャッジ時間 | 7,426 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 183 ms
6,448 KB |
testcase_01 | AC | 185 ms
6,568 KB |
testcase_02 | AC | 184 ms
6,440 KB |
testcase_03 | AC | 108 ms
6,444 KB |
testcase_04 | AC | 187 ms
6,444 KB |
testcase_05 | AC | 176 ms
6,444 KB |
testcase_06 | AC | 176 ms
6,444 KB |
testcase_07 | AC | 178 ms
6,440 KB |
testcase_08 | AC | 178 ms
6,444 KB |
testcase_09 | AC | 186 ms
6,444 KB |
testcase_10 | AC | 176 ms
6,448 KB |
testcase_11 | AC | 177 ms
6,444 KB |
testcase_12 | AC | 177 ms
6,440 KB |
testcase_13 | AC | 177 ms
6,572 KB |
testcase_14 | AC | 178 ms
6,572 KB |
testcase_15 | AC | 181 ms
6,448 KB |
testcase_16 | AC | 175 ms
6,568 KB |
testcase_17 | AC | 184 ms
6,444 KB |
testcase_18 | AC | 181 ms
6,568 KB |
testcase_19 | AC | 182 ms
6,572 KB |
testcase_20 | AC | 183 ms
6,448 KB |
testcase_21 | AC | 181 ms
6,448 KB |
testcase_22 | AC | 183 ms
6,444 KB |
testcase_23 | AC | 183 ms
6,444 KB |
testcase_24 | AC | 182 ms
6,444 KB |
testcase_25 | AC | 176 ms
6,448 KB |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i=0;i<(n);i++) using namespace std; class Eratosthenes_sieve{ vector<bool> er; vector<int> p; public: Eratosthenes_sieve(int n):er(n+1,true){ if(n>=0) er[0]=false; if(n>=1) er[1]=false; for(int i=2;i*i<=n;i++) if(er[i]) for(int j=i*i;j<=n;j+=i) er[j]=false; rep(i,n+1) if(er[i]) p.emplace_back(i); } bool is_prime(int a)const{ assert(a<=(int)er.size()-1); return a>=0 && er[a]; } const vector<int>& primes()const{ return p; } }; vector<int> f(int a){ bool fr[10]={}; for(char c:to_string(a)) fr[c-'0']=true; vector<int> res; rep(d,10) if(fr[d]) res.emplace_back(d); return res; } int main(){ auto p=Eratosthenes_sieve(5e6).primes(); int n; cin>>n; int S=0; rep(i,n){ int a; cin>>a; S|=1<<a; } int m=p.size(),ans=-1,idx=0,cnt[10]={}; rep(i,m){ for(int d:f(p[i])) cnt[d]++; int T=0; rep(d,10) if(cnt[d]>0) T|=1<<d; while(S!=T && (S&T)==S){ for(int d:f(p[idx])) cnt[d]--; T=0; rep(d,10) if(cnt[d]>0) T|=1<<d; idx++; } if(S==T){ int l=(idx==0?1:p[idx-1]+1); int r=(i==m-1?5000000:p[i+1]-1); ans=max(ans,r-l); } } printf("%d\n",ans); return 0; }