結果
問題 | No.12 限定された素数 |
ユーザー | sigma425 |
提出日時 | 2015-09-26 18:17:06 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 98 ms / 5,000 ms |
コード長 | 1,229 bytes |
コンパイル時間 | 1,382 ms |
コンパイル使用メモリ | 162,772 KB |
実行使用メモリ | 28,840 KB |
最終ジャッジ日時 | 2024-05-03 09:34:49 |
合計ジャッジ時間 | 4,743 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 95 ms
28,584 KB |
testcase_01 | AC | 93 ms
28,584 KB |
testcase_02 | AC | 94 ms
28,584 KB |
testcase_03 | AC | 87 ms
28,840 KB |
testcase_04 | AC | 94 ms
28,588 KB |
testcase_05 | AC | 87 ms
28,712 KB |
testcase_06 | AC | 87 ms
28,716 KB |
testcase_07 | AC | 90 ms
28,712 KB |
testcase_08 | AC | 90 ms
28,708 KB |
testcase_09 | AC | 92 ms
28,840 KB |
testcase_10 | AC | 87 ms
28,584 KB |
testcase_11 | AC | 91 ms
28,584 KB |
testcase_12 | AC | 90 ms
28,840 KB |
testcase_13 | AC | 89 ms
28,584 KB |
testcase_14 | AC | 91 ms
28,584 KB |
testcase_15 | AC | 89 ms
28,584 KB |
testcase_16 | AC | 91 ms
28,708 KB |
testcase_17 | AC | 97 ms
28,712 KB |
testcase_18 | AC | 98 ms
28,584 KB |
testcase_19 | AC | 96 ms
28,712 KB |
testcase_20 | AC | 93 ms
28,580 KB |
testcase_21 | AC | 90 ms
28,584 KB |
testcase_22 | AC | 96 ms
28,712 KB |
testcase_23 | AC | 94 ms
28,584 KB |
testcase_24 | AC | 95 ms
28,716 KB |
testcase_25 | AC | 89 ms
28,708 KB |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i=0;i<(int)(n);i++) #define rep1(i,n) for(int i=1;i<=(int)(n);i++) #define all(c) c.begin(),c.end() #define pb push_back #define fs first #define sc second #define show(x) cout << #x << " = " << x << endl #define chmin(x,y) x=min(x,y) #define chmax(x,y) x=max(x,y) using namespace std; const int MX=5000000; bool isp[MX+1]; vector<int> ps; vector<int> ds[10]; int main(){ for(int i=2;i<=MX;i++) isp[i]=1; for(int i=2;i<=MX;i++){ if(isp[i]){ ps.pb(i); for(int j=2*i;j<=MX;j+=i) isp[j]=0; } } for(int p:ps){ int tmp=p; int c[10]={}; while(tmp){ c[tmp%10]++; tmp/=10; } rep(i,10) ds[i].pb(c[i]); } int K; cin>>K; bool is[10]={}; rep(i,K){ int x; cin>>x; is[x]=1; } int ans=-1; int N=ps.size(); ps.pb(MX+1); int j=0; int c[10]={}; rep(i,N){ chmax(j,i); while(j<N){ // add j int nc[10]; rep(k,10) nc[k]=c[k]+ds[k][j]; bool ok=1; rep(k,10){ if(!is[k]&&nc[k]>0) ok=0; } if(!ok) break; rep(k,10) c[k]=nc[k]; j++; } bool ok=1; rep(k,10) if(is[k]&&c[k]==0) ok=0; if(ok){ int len=ps[j]-(i==0?0:ps[i-1])-2; chmax(ans,len); } if(i<j){ rep(k,10) c[k]-=ds[k][i]; } } cout<<ans<<endl; }