結果
問題 | No.12 限定された素数 |
ユーザー | yuusti |
提出日時 | 2015-02-18 20:39:58 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 233 ms / 5,000 ms |
コード長 | 1,647 bytes |
コンパイル時間 | 776 ms |
コンパイル使用メモリ | 87,908 KB |
実行使用メモリ | 23,040 KB |
最終ジャッジ日時 | 2024-05-03 09:06:21 |
合計ジャッジ時間 | 5,491 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 142 ms
22,784 KB |
testcase_01 | AC | 174 ms
22,912 KB |
testcase_02 | AC | 124 ms
22,828 KB |
testcase_03 | AC | 233 ms
22,784 KB |
testcase_04 | AC | 139 ms
22,840 KB |
testcase_05 | AC | 163 ms
22,912 KB |
testcase_06 | AC | 152 ms
22,892 KB |
testcase_07 | AC | 158 ms
22,784 KB |
testcase_08 | AC | 146 ms
22,848 KB |
testcase_09 | AC | 151 ms
22,912 KB |
testcase_10 | AC | 149 ms
22,912 KB |
testcase_11 | AC | 139 ms
22,888 KB |
testcase_12 | AC | 170 ms
22,908 KB |
testcase_13 | AC | 165 ms
23,040 KB |
testcase_14 | AC | 163 ms
22,912 KB |
testcase_15 | AC | 170 ms
22,912 KB |
testcase_16 | AC | 186 ms
22,912 KB |
testcase_17 | AC | 155 ms
22,912 KB |
testcase_18 | AC | 129 ms
22,968 KB |
testcase_19 | AC | 135 ms
22,912 KB |
testcase_20 | AC | 127 ms
22,908 KB |
testcase_21 | AC | 150 ms
23,024 KB |
testcase_22 | AC | 133 ms
22,912 KB |
testcase_23 | AC | 135 ms
22,912 KB |
testcase_24 | AC | 143 ms
22,912 KB |
testcase_25 | AC | 159 ms
22,912 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <string> #include <sstream> #include <cstring> #include <cstdio> #include <cstdlib> #include <cmath> #include <queue> #include <stack> #include <map> #include <set> #include <numeric> #include <cctype> #include <tuple> #include <climits> #include <bitset> #include <cassert> #include <random> #ifdef _MSC_VER #include <agents.h> #endif #define FOR(i, a, b) for(int i = (a); i < (int)(b); ++i) #define rep(i, n) FOR(i, 0, n) #define ALL(v) v.begin(), v.end() #define REV(v) v.rbegin(), v.rend() #define MEMSET(v, s) memset(v, s, sizeof(v)) #define UNIQUE(v) (v).erase(unique(ALL(v)), (v).end()) #define MP make_pair #define MT make_tuple using namespace std; typedef long long ll; typedef pair<int, int> P; const int N = 5e6+1; int np[N]; int need[10]; int cnt[10]; bool can(){ rep(i, 10) if (!need[i] && cnt[i]) return false; return true; } bool check(){ rep(i, 10) if (need[i] != (cnt[i] >= 1)) return false; return true; } void f(int val, int k){ if (!val) return; cnt[val % 10] += k; f(val / 10, k); } int main(){ cin.tie(0); ios::sync_with_stdio(false); np[1]=1; for (int i = 2; i*i < N; ++i){ if (!np[i]) for (int j = i * 2; j < N; j += i) np[j] = 1; } int n; cin >> n; rep(i, n){ int x; cin >> x; need[x] = 1; } int l = 1, r = 1; int ans = -1; while (1){ while (r < N && can()){ if(check()) ans = max(ans, r - l - 1); if (!np[r]) f(r, 1); ++r; } if (check()) ans = max(ans, r - l - 1); if (l >= r) break; if (!np[l]) f(l, -1); ++l; if(check()) ans = max(ans, r - l - 1); } cout << ans << endl; return 0; }