結果
問題 | No.12 限定された素数 |
ユーザー | snuke |
提出日時 | 2015-04-08 19:47:24 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 247 ms / 5,000 ms |
コード長 | 2,102 bytes |
コンパイル時間 | 847 ms |
コンパイル使用メモリ | 83,648 KB |
実行使用メモリ | 6,196 KB |
最終ジャッジ日時 | 2024-05-03 09:19:19 |
合計ジャッジ時間 | 7,713 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 232 ms
6,192 KB |
testcase_01 | AC | 223 ms
6,192 KB |
testcase_02 | AC | 208 ms
6,064 KB |
testcase_03 | AC | 212 ms
6,192 KB |
testcase_04 | AC | 214 ms
6,060 KB |
testcase_05 | AC | 223 ms
6,192 KB |
testcase_06 | AC | 225 ms
6,064 KB |
testcase_07 | AC | 228 ms
5,932 KB |
testcase_08 | AC | 212 ms
5,932 KB |
testcase_09 | AC | 214 ms
6,060 KB |
testcase_10 | AC | 217 ms
5,936 KB |
testcase_11 | AC | 223 ms
6,060 KB |
testcase_12 | AC | 235 ms
6,064 KB |
testcase_13 | AC | 228 ms
6,060 KB |
testcase_14 | AC | 224 ms
5,936 KB |
testcase_15 | AC | 230 ms
6,196 KB |
testcase_16 | AC | 243 ms
6,192 KB |
testcase_17 | AC | 247 ms
6,064 KB |
testcase_18 | AC | 223 ms
6,188 KB |
testcase_19 | AC | 222 ms
5,932 KB |
testcase_20 | AC | 203 ms
6,064 KB |
testcase_21 | AC | 218 ms
5,932 KB |
testcase_22 | AC | 225 ms
5,936 KB |
testcase_23 | AC | 224 ms
6,068 KB |
testcase_24 | AC | 242 ms
5,936 KB |
testcase_25 | AC | 222 ms
5,932 KB |
ソースコード
#include <cstdio> #include <algorithm> #include <stack> #include <queue> #include <deque> #include <vector> #include <string> #include <string.h> #include <cstdlib> #include <ctime> #include <cmath> #include <map> #include <set> #include <iostream> #include <sstream> #include <cctype> #define fi first #define se second #define rep(i,n) for(int i = 0; i < n; ++i) #define rrep(i,n) for(int i = 1; i <= n; ++i) #define drep(i,n) for(int i = n-1; i >= 0; --i) #define gep(i,g,j) for(int i = g.head[j]; i != -1; i = g.e[i].next) #define each(it,c) for(__typeof((c).begin()) it=(c).begin();it!=(c).end();it++) #define rng(a) a.begin(),a.end() #define maxs(x,y) x = max(x,y) #define mins(x,y) x = min(x,y) #define pb push_back #define sz(x) (int)(x).size() #define pcnt __builtin_popcount #define snuke srand((unsigned)clock()+(unsigned)time(NULL)); inline int in() { int x; scanf("%d",&x); return x;} using namespace std; typedef long long int ll; typedef pair<int,int> P; typedef vector<int> vi; const int MX = 5000000, INF = 1000010000; const ll LINF = 1000000000000000000ll; const double eps = 1e-10; const int di[] = {-1,0,1,0}, dj[] = {0,-1,0,1}; //^<v> //あのさぁ・・・ vector<int> ps; vector<bool> pf; void sieve(int mx){ pf.resize(mx+1); fill(rng(pf),true); pf[0] = pf[1] = false; for(ll i = 2; i <= mx; i++){ if(!pf[i]) continue; ps.pb(i); for(ll j = i*i; j <= mx; j+=i) pf[j] = false; } } int n; vi f; void add(vi& a, int x, int val) { if (!pf[x]) return; while(x) { a[x%10] += val; x /= 10; } } bool ok(vi& a) { rep(i,10) if (!f[i] && a[i]) return false; return true; } bool all_use(vi& a) { rep(i,10) if (!f[i] && a[i]) return false; rep(i,10) if (f[i] && !a[i]) return false; return true; } int main(){ cin >> n; f = vi(10); rep(i,n) { int a; cin >> a; f[a] = 1; } sieve(5000005); int ans = -1; vi nf = vi(10); for (int l = 1, r = 1; r <= MX; ++r) { add(nf,r,1); while (!ok(nf)) { add(nf,l,-1); ++l; } if (all_use(nf)) ans = max(ans,r-l); } cout << ans << endl; return 0; }