結果
問題 | No.12 限定された素数 |
ユーザー | tarakojo1019 |
提出日時 | 2021-01-18 17:41:16 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 202 ms / 5,000 ms |
コード長 | 1,512 bytes |
コンパイル時間 | 1,227 ms |
コンパイル使用メモリ | 122,660 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-08 06:45:59 |
合計ジャッジ時間 | 5,274 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 59 ms
5,248 KB |
testcase_01 | AC | 117 ms
5,376 KB |
testcase_02 | AC | 80 ms
5,376 KB |
testcase_03 | AC | 103 ms
5,376 KB |
testcase_04 | AC | 101 ms
5,376 KB |
testcase_05 | AC | 126 ms
5,376 KB |
testcase_06 | AC | 202 ms
5,376 KB |
testcase_07 | AC | 174 ms
5,376 KB |
testcase_08 | AC | 123 ms
5,376 KB |
testcase_09 | AC | 146 ms
5,376 KB |
testcase_10 | AC | 96 ms
5,376 KB |
testcase_11 | AC | 149 ms
5,376 KB |
testcase_12 | AC | 173 ms
5,376 KB |
testcase_13 | AC | 189 ms
5,376 KB |
testcase_14 | AC | 124 ms
5,376 KB |
testcase_15 | AC | 186 ms
5,376 KB |
testcase_16 | AC | 140 ms
5,376 KB |
testcase_17 | AC | 79 ms
5,376 KB |
testcase_18 | AC | 61 ms
5,376 KB |
testcase_19 | AC | 60 ms
5,376 KB |
testcase_20 | AC | 87 ms
5,376 KB |
testcase_21 | AC | 123 ms
5,376 KB |
testcase_22 | AC | 79 ms
5,376 KB |
testcase_23 | AC | 79 ms
5,376 KB |
testcase_24 | AC | 79 ms
5,376 KB |
testcase_25 | AC | 129 ms
5,376 KB |
ソースコード
#include<iostream> #include<math.h> #include<algorithm> #include<stdint.h> #include<vector> #include<deque> #include<stack> #include<functional> #include<string> #include<numeric> #include<cstring> #include<random> #include<array> #include<fstream> #include<iomanip> #include<list> #include<set> #include<map> #include<unordered_map> #include<unordered_set> #include<bitset> #include<queue> /* #include<boost/multiprecision/cpp_int.hpp> using namespace boost::multiprecision; */ using namespace std; using ll = long long; using ull = unsigned long long; #define REP(i,a,b) for(ll i = a; i < b; ++i) #define PRI(s) std::cout << s << endl #define PRIF(v, n) printf("%."#n"f\n", (double)v) template<typename A, typename B>void mins(A& a, const B& b) { a = min(a, (A)b); }; template<typename A, typename B>void maxs(A& a, const B& b) { a = max(a, (A)b); }; int main() { ll N; cin >> N; unordered_set<ll> s; REP(i, 0, N) { ll a; cin >> a; s.insert(a); } vector<bool> E(5000001, true); E[0] = false; E[1] = false; REP(i, 2, 5000001) { if (!E[i]) continue; for (ll j = 2; i * j < E.size(); ++j) E[i * j] = false; } ll ans = -1; ll R = 1; REP(L, 1, 5000001) { if (L < R) continue; unordered_set<ll> tmp; for (R = L; R < 5000001; ++R) { if (E[R]) { ll t = R; while (t > 0) { if (s.count(t % 10) == 0) goto LOOPEND; tmp.insert(t % 10); t /= 10; } } if (s.size() == tmp.size())maxs(ans, R - L); } LOOPEND: continue; } PRI(ans); return 0; }