結果
問題 | No.12 限定された素数 |
ユーザー | assy1028 |
提出日時 | 2015-03-21 15:52:32 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 61 ms / 5,000 ms |
コード長 | 2,046 bytes |
コンパイル時間 | 814 ms |
コンパイル使用メモリ | 89,644 KB |
実行使用メモリ | 10,460 KB |
最終ジャッジ日時 | 2024-05-03 09:15:48 |
合計ジャッジ時間 | 3,223 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 58 ms
10,204 KB |
testcase_01 | AC | 59 ms
10,204 KB |
testcase_02 | AC | 56 ms
10,200 KB |
testcase_03 | AC | 58 ms
10,456 KB |
testcase_04 | AC | 56 ms
10,204 KB |
testcase_05 | AC | 59 ms
10,456 KB |
testcase_06 | AC | 56 ms
10,148 KB |
testcase_07 | AC | 57 ms
10,456 KB |
testcase_08 | AC | 56 ms
10,204 KB |
testcase_09 | AC | 58 ms
10,460 KB |
testcase_10 | AC | 56 ms
10,336 KB |
testcase_11 | AC | 56 ms
10,336 KB |
testcase_12 | AC | 55 ms
10,204 KB |
testcase_13 | AC | 57 ms
10,460 KB |
testcase_14 | AC | 56 ms
10,456 KB |
testcase_15 | AC | 56 ms
10,460 KB |
testcase_16 | AC | 58 ms
10,248 KB |
testcase_17 | AC | 59 ms
10,460 KB |
testcase_18 | AC | 53 ms
10,200 KB |
testcase_19 | AC | 54 ms
10,460 KB |
testcase_20 | AC | 57 ms
10,204 KB |
testcase_21 | AC | 59 ms
10,204 KB |
testcase_22 | AC | 59 ms
10,204 KB |
testcase_23 | AC | 57 ms
10,336 KB |
testcase_24 | AC | 61 ms
10,332 KB |
testcase_25 | AC | 60 ms
10,220 KB |
コンパイルメッセージ
main.cpp: In function ‘int solve(int)’: main.cpp:78:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 78 | scanf("%d", &a); | ~~~~~^~~~~~~~~~ main.cpp: In function ‘int main()’: main.cpp:100:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 100 | scanf("%d", &n); | ~~~~~^~~~~~~~~~
ソースコード
#include <algorithm> #include <iostream> #include <cstdio> #include <map> #include <numeric> #include <cmath> #include <set> #include <sstream> #include <string> #include <vector> #include <queue> #include <complex> #include <string.h> #include <unordered_set> #include <unordered_map> using namespace std; #define endl '\n' #define all(v) (v).begin(), (v).end() #define rall(v) (v).rbegin(), (v).rend() #define uniq(v) (v).erase(unique((v).begin(), (v).end()), (v).end()) typedef long long ll; typedef pair<int, int> P; typedef unsigned int uint; typedef unsigned long long ull; struct pairhash { public: template<typename T, typename U> size_t operator()(const pair<T, U> &x) const { size_t seed = hash<T>()(x.first); return hash<U>()(x.second) + 0x9e3779b9 + (seed<<6) + (seed>>2); } }; const int inf = 1000000009; bool is_prime[5000009]; vector<int> primes; void sieve(int n) { memset(is_prime, true, sizeof(is_prime)); is_prime[0] = is_prime[1] = false; for (int i = 2; i <= n; i++) { if (is_prime[i]) { primes.push_back(i); for (int j = i + i; j <= n; j += i) is_prime[j] = false; } } } vector<bool> as(10, false); vector<bool> used(10, false); bool check(int n) { int m = n; while (n > 0) { int k = n % 10; if (!as[k]) return false; n /= 10; } while (m > 0) { int k = m % 10; used[k] = true; m /= 10; } return true; } bool sat() { for (int i = 0; i < 10; i++) if (as[i] != used[i]) return false; return true; } int solve(int n) { sieve(5000000); for (int i = 0; i < n; i++) { int a; scanf("%d", &a); as[a] = true; } int len = primes.size(); int l = 1, res = -1; for (int i = 0; i < len; i++) { if (!check(primes[i])) { if (sat()) { res = max(res, primes[i]-1-l); } l = primes[i] + 1; for (int j = 0; j < 10; j++) used[j] = false; } } if (sat()) res = max(res, 5000000-l); return (res > 0 ? res : -1); } int main() { int n; scanf("%d", &n); printf("%d\n", solve(n)); }