結果

問題 No.12 限定された素数
ユーザー TKTYITKTYI
提出日時 2021-08-28 22:01:43
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 138 ms / 5,000 ms
コード長 1,471 bytes
コンパイル時間 4,238 ms
コンパイル使用メモリ 229,396 KB
実行使用メモリ 9,476 KB
最終ジャッジ日時 2023-08-14 04:07:45
合計ジャッジ時間 8,586 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
8,684 KB
testcase_01 AC 127 ms
8,836 KB
testcase_02 AC 125 ms
9,476 KB
testcase_03 AC 136 ms
9,088 KB
testcase_04 AC 126 ms
8,692 KB
testcase_05 AC 130 ms
8,156 KB
testcase_06 AC 127 ms
8,340 KB
testcase_07 AC 132 ms
9,016 KB
testcase_08 AC 129 ms
8,404 KB
testcase_09 AC 131 ms
8,328 KB
testcase_10 AC 129 ms
9,244 KB
testcase_11 AC 138 ms
9,024 KB
testcase_12 AC 135 ms
9,408 KB
testcase_13 AC 129 ms
8,196 KB
testcase_14 AC 127 ms
8,148 KB
testcase_15 AC 129 ms
8,888 KB
testcase_16 AC 134 ms
9,076 KB
testcase_17 AC 126 ms
8,028 KB
testcase_18 AC 124 ms
9,152 KB
testcase_19 AC 123 ms
8,832 KB
testcase_20 AC 126 ms
8,992 KB
testcase_21 AC 130 ms
9,088 KB
testcase_22 AC 124 ms
8,684 KB
testcase_23 AC 128 ms
8,820 KB
testcase_24 AC 125 ms
8,156 KB
testcase_25 AC 127 ms
8,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
typedef long long int ll;
typedef long double ld;
#define FOR(i,l,r) for(ll i=l;i<r;i++)
#define REP(i,n) FOR(i,0,n)
#define RFOR(i,l,r) for(ll i=r-1;i>=l;i--)
#define RREP(i,n) RFOR(i,0,n)
#define ALL(x) x.begin(),x.end()
#define P pair<ll,ll>
#define F first
#define S second
#define BS(A,x) binary_search(ALL(A),x)
#define LB(A,x) (ll)(lower_bound(ALL(A),x)-A.begin())
#define UB(A,x) (ll)(upper_bound(ALL(A),x)-A.begin())
#define COU(A,x) UB(A,x)-LB(A,x)
template<typename T>using min_priority_queue=priority_queue<T,vector<T>,greater<T>>;
using mint=modint1000000007;
bool prime(ll N){ll d=2;while(d*d<=N){if(N%d==0)return 0;d++;}return 1;}
signed main(){
  ll N,ans=-1;cin>>N;vector<bool>X(10,0),p(5000001,1);REP(i,N){ll A;cin>>A;X[A]=1;}
  p[0]=0;p[1]=0;FOR(i,2,5000001){ll j=2*i;while(j<=5000000){p[j]=0;j+=i;}}
  vector<ll>PRIME;PRIME.push_back(0);REP(i,5000001)if(p[i])PRIME.push_back(i);
  PRIME.push_back(5000001);vector<ll>DP(10,0);ll r=1;
  FOR(i,1,PRIME.size()-1){
    bool x=0;r=max(r,i);
    while(r<PRIME.size()-1){
      ll k=PRIME[r];while(k){if(!X[k%10])x=1;k/=10;}if(x)break;
      k=PRIME[r];while(k){DP[k%10]++;k/=10;}r++;
    }
    if(i<r){
      bool x=1;REP(j,10)if(X[j]&&DP[j]==0)x=0;
      if(x)ans=max(ans,PRIME[r]-2-PRIME[i-1]);
      ll k=PRIME[i];while(k){DP[k%10]--;k/=10;}
    }
    else REP(j,10)DP[j]=0;
  }
  cout<<ans<<endl;
  return 0;
}
0