結果

問題 No.12 限定された素数
ユーザー TKTYITKTYI
提出日時 2021-08-28 22:01:43
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 141 ms / 5,000 ms
コード長 1,471 bytes
コンパイル時間 4,250 ms
コンパイル使用メモリ 230,840 KB
実行使用メモリ 8,372 KB
最終ジャッジ日時 2024-05-01 16:56:08
合計ジャッジ時間 8,239 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
8,236 KB
testcase_01 AC 138 ms
8,108 KB
testcase_02 AC 135 ms
8,108 KB
testcase_03 AC 141 ms
8,112 KB
testcase_04 AC 130 ms
8,240 KB
testcase_05 AC 136 ms
8,240 KB
testcase_06 AC 132 ms
8,240 KB
testcase_07 AC 137 ms
8,236 KB
testcase_08 AC 133 ms
8,116 KB
testcase_09 AC 134 ms
8,112 KB
testcase_10 AC 131 ms
8,368 KB
testcase_11 AC 141 ms
8,368 KB
testcase_12 AC 133 ms
8,240 KB
testcase_13 AC 131 ms
8,240 KB
testcase_14 AC 132 ms
8,120 KB
testcase_15 AC 133 ms
8,108 KB
testcase_16 AC 136 ms
8,116 KB
testcase_17 AC 129 ms
8,364 KB
testcase_18 AC 128 ms
8,236 KB
testcase_19 AC 130 ms
8,116 KB
testcase_20 AC 131 ms
8,092 KB
testcase_21 AC 136 ms
8,244 KB
testcase_22 AC 132 ms
8,372 KB
testcase_23 AC 132 ms
8,236 KB
testcase_24 AC 130 ms
8,244 KB
testcase_25 AC 134 ms
8,112 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