結果
問題 | No.12 限定された素数 |
ユーザー | koyopro |
提出日時 | 2015-09-28 12:46:11 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 194 ms / 5,000 ms |
コード長 | 2,303 bytes |
コンパイル時間 | 815 ms |
コンパイル使用メモリ | 87,264 KB |
実行使用メモリ | 8,400 KB |
最終ジャッジ日時 | 2024-11-24 08:30:11 |
合計ジャッジ時間 | 6,527 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 179 ms
8,344 KB |
testcase_01 | AC | 187 ms
8,200 KB |
testcase_02 | AC | 180 ms
8,352 KB |
testcase_03 | AC | 192 ms
8,204 KB |
testcase_04 | AC | 181 ms
8,240 KB |
testcase_05 | AC | 180 ms
8,376 KB |
testcase_06 | AC | 189 ms
8,220 KB |
testcase_07 | AC | 185 ms
8,200 KB |
testcase_08 | AC | 179 ms
8,400 KB |
testcase_09 | AC | 180 ms
8,280 KB |
testcase_10 | AC | 180 ms
8,316 KB |
testcase_11 | AC | 189 ms
8,288 KB |
testcase_12 | AC | 187 ms
8,348 KB |
testcase_13 | AC | 186 ms
8,296 KB |
testcase_14 | AC | 181 ms
8,172 KB |
testcase_15 | AC | 182 ms
8,292 KB |
testcase_16 | AC | 194 ms
8,096 KB |
testcase_17 | AC | 180 ms
8,168 KB |
testcase_18 | AC | 177 ms
8,168 KB |
testcase_19 | AC | 178 ms
8,048 KB |
testcase_20 | AC | 179 ms
8,316 KB |
testcase_21 | AC | 181 ms
8,172 KB |
testcase_22 | AC | 179 ms
8,308 KB |
testcase_23 | AC | 178 ms
8,324 KB |
testcase_24 | AC | 185 ms
8,184 KB |
testcase_25 | AC | 181 ms
8,344 KB |
ソースコード
#include <iostream> #include <sstream> #include <math.h> #include <vector> #include <array> #include <algorithm> #include <queue> #include <numeric> #include <map> #include <set> #include <bitset> using namespace std; #define int long long #define FOR(i, a, b) for(int i=(a);i<(b);i++) #define RFOR(i, a, b) for(int i=(b-1);i>=(a);i--) #define REP(i, n) for(int i=0; i<(n); i++) #define RREP(i, n) for(int i=(n-1); i>=0; i--) #define ALL(a) (a).begin(),(a).end() #define UNIQUE_SORT(l) sort(ALL(l)); l.erase(unique(ALL(l)), l.end()); #define CONTAIN(a, b) find(ALL(a), (b)) != (a).end() #define SUM(a) accumulate(ALL(a), 0) #define array2(type, x, y) array<array<type, y>, x> #define vector2(type) vector<vector<type> > #define out(...) printf(__VA_ARGS__) typedef pair<int, int> pos; int pos::*x = &pos::first; int pos::*y = &pos::second; int dxy[] = {0, 1, 0, -1, 0}; /*================================*/ #define MAX 5000000 bool notPrime[MAX + 10]; bool ok[10]; int N; set<int> separate(int n) { set<int> s; while (n > 0) { s.insert(n % 10); n /= 10; } return s; } bool isok(int icnt[10]) { REP(i, 10) { if (ok[i] && !icnt[i]) return false; if (!ok[i] && icnt[i]) return false; } return true; } bool isover(set<int> s) { for (int t : s) { if (!ok[t]) return true; } return false; } signed main() { notPrime[0] = notPrime[1] = true; FOR(i,2,MAX+1) { if (notPrime[i] == false) { int k = 2; while (i*k <= MAX) { notPrime[i*k] = true; k++; } } } cin >> N; int c; REP(i,N) { cin >> c; ok[c] = true; } int maxl = -1; int icnt[10] = {0}; int i = 1; int j = 1; while (j <= MAX) { if (notPrime[j]) { j++; continue; } set<int> s = separate(j); if (isover(s)) { if (isok(icnt)) { maxl = max(maxl, j - i - 1); } REP(k,10) icnt[k] = 0; i = j + 1; } else { for (auto& t : s) icnt[t]++; } j++; } if (isok(icnt)) { maxl = max(maxl, j - i - 1); } cout << maxl << endl; return 0; }