-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathnext1.cpp
51 lines (51 loc) · 1.13 KB
/
next1.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// Ivan Carvalho
// Solution to https://dmoj.ca/problem/next1
#include <bits/stdc++.h>
using namespace std;
const int MAXN = 3 * 1e7;
bitset<MAXN> crivo;
vector<int> primos;
int is_prime(int x) {
if (x < MAXN) return !crivo.test(x);
for (int y : primos) {
if (1LL * y * y > x) break;
if (x % y == 0) return 0;
}
return 1;
}
int is_semi_prime(int x) {
for (int y : primos) {
if (1LL * y * y > x) break;
if (x % y == 0) {
if (is_prime(x / y)) return 1;
return 0;
}
}
return 0;
}
int main() {
int TC;
crivo.set(0);
crivo.set(1);
for (int i = 2; i < MAXN; i++) {
if (crivo.test(i)) continue;
if (i > 33000) continue;
primos.push_back(i);
if (i > 10010) continue;
for (int j = i * i; j < MAXN; j += i) {
crivo.set(j);
}
}
scanf("%d", &TC);
while (TC--) {
int n;
scanf("%d", &n);
for (int i = n + 1; i < 2 * 1e9; i++) {
if (is_semi_prime(i)) {
printf("%d\n", i);
break;
}
}
}
return 0;
}