結果
問題 | No.12 限定された素数 |
ユーザー | CleyL |
提出日時 | 2022-07-31 15:02:47 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 139 ms / 5,000 ms |
コード長 | 2,765 bytes |
コンパイル時間 | 1,178 ms |
コンパイル使用メモリ | 122,188 KB |
実行使用メモリ | 6,220 KB |
最終ジャッジ日時 | 2024-07-20 22:41:07 |
合計ジャッジ時間 | 4,683 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 78 ms
6,084 KB |
testcase_01 | AC | 87 ms
6,092 KB |
testcase_02 | AC | 80 ms
6,088 KB |
testcase_03 | AC | 139 ms
6,088 KB |
testcase_04 | AC | 79 ms
6,220 KB |
testcase_05 | AC | 98 ms
6,088 KB |
testcase_06 | AC | 107 ms
6,092 KB |
testcase_07 | AC | 115 ms
6,220 KB |
testcase_08 | AC | 90 ms
5,996 KB |
testcase_09 | AC | 88 ms
6,084 KB |
testcase_10 | AC | 95 ms
6,092 KB |
testcase_11 | AC | 134 ms
6,084 KB |
testcase_12 | AC | 114 ms
6,008 KB |
testcase_13 | AC | 102 ms
6,088 KB |
testcase_14 | AC | 92 ms
6,084 KB |
testcase_15 | AC | 101 ms
6,084 KB |
testcase_16 | AC | 131 ms
6,092 KB |
testcase_17 | AC | 74 ms
6,216 KB |
testcase_18 | AC | 75 ms
6,088 KB |
testcase_19 | AC | 77 ms
6,088 KB |
testcase_20 | AC | 83 ms
5,964 KB |
testcase_21 | AC | 86 ms
6,092 KB |
testcase_22 | AC | 77 ms
5,964 KB |
testcase_23 | AC | 77 ms
6,092 KB |
testcase_24 | AC | 77 ms
6,216 KB |
testcase_25 | AC | 97 ms
6,088 KB |
ソースコード
//yukicoder@cpp17 #include <iostream> #include <cmath> #include <algorithm> #include <iomanip> #include <string> #include <vector> #include <set> #include <stack> #include <queue> #include <map> #include <bitset> #include <complex> #include <cctype> #include <utility> #include <climits> #include <numeric> using namespace std; using ll = long long; using P = pair<ll,ll>; const ll MOD = 998244353; const ll MODx = 1000000007; const int INF = (1<<30)-1; const ll LINF = (1LL<<62LL)-1; const double EPS = (1e-10); P ar4[4] = {{0,1},{0,-1},{1,0},{-1,0}}; P ar8[8] = {{-1,-1},{-1,0},{-1,1},{0,-1},{0,1},{1,-1},{1,0},{1,1}}; template <typename T> vector<T> make_vector(size_t a, T b) { return vector<T>(a, b); } template <typename... Ts> auto make_vector(size_t a, Ts... ts) { return vector<decltype(make_vector(ts...))>(a, make_vector(ts...)); } /* 確認ポイント cout << fixed << setprecision(n) << 小数計算//n桁の小数表記になる 計算量は変わらないが楽できるシリーズ min(max)_element(iter,iter)で一番小さい(大きい)値のポインタが帰ってくる count(iter,iter,int)でintがiterからiterの間にいくつあったかを取得できる */ /* function corner below */ struct SieveEratos{ vector<bool> t; vector<int> primes; SieveEratos(int n):t(n+1,true){ t[0] = t[1] = false; for(int i = 2; n >= i; i++){ if(t[i]){ primes.emplace_back(i); for(int j = i+i; n >= j; j+=i){ t[j] = false; } } } } bool operator[](int x){return t[x];} }; /* Function corner above */ __attribute__((constructor)) void initial() { cin.tie(0); ios::sync_with_stdio(false); } int main(){ int n;cin>>n; set<int> X; for(int i = 0; n > i; i++){ int x;cin>>x;X.insert(x); } SieveEratos A(5000001); set<int> nw; int prev = 1; int ans = -1; bool primes = false; for(int i = 1; 5000000 >= i; i++){ if(A[i]){ string x = to_string(i); bool ok = true; for(int j = 0; x.size() > j; j++){ if(!X.count(x[j]-'0')){ ok = false; } } if(!ok){ if(nw.size() == X.size()){ ans = max(ans,i-prev-1); //cout << prev << " " << i << endl; } nw.clear(); prev = i+1; primes = false; }else{ primes = true; for(int j = 0; x.size() > j; j++){ //cout << "!!" << endl; nw.insert(x[j]-'0'); } } } } cout << max(ans,(5000000-prev?5000000-prev:-1)) << endl; }