QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#561784#1863. Yes, Prime MinisteractorAC ✓257ms41492kbC++141.6kb2024-09-13 10:24:522024-09-13 10:24:53

Judging History

This is the latest submission verdict.

  • [2024-09-13 10:24:53]
  • Judged
  • Verdict: AC
  • Time: 257ms
  • Memory: 41492kb
  • [2024-09-13 10:24:52]
  • Submitted

answer

#include <bits/stdc++.h>
using namespace std;
#define rep(i,l,r) for (int i = (l); i <= (r); i++)
#define per(i,r,l) for (int i = (r); i >= (l); i--)
#define pb push_back
#define eb emplace_back
#define mp make_pair
#define all(x) (x).begin(),(x).end()
#define fi first
#define se second
#define SZ(x) ((int)(x).size())
#define maxn(a, b) a = max(a, b)
#define minn(a, b) a = min(a, b)
typedef vector<int> VI;
typedef long long ll;
typedef pair<int,int> PII;
typedef double db;
const ll mod = 998244353;
mt19937 gen(random_device{}());
ll rp(ll a,ll b) {ll res=1%mod;a%=mod; assert(b>=0); for(;b;b>>=1){if(b&1)res=res*a%mod;a=a*a%mod;}return res;}
ll gcd(ll a,ll b) { return b?gcd(b,a%b):a;}

const int N = 3e7;
const int inf = 1e9;
bool b[N];
VI ve;

void solve() {
    int n;
    scanf("%d", &n);
    // (l + r) * 1ll * (r - l + 1) / 2;
    if (n == 0) {
        puts("3");
        return ;
    }
    if (n>0&&!b[n]) return void(puts("1"));
    if (n>0&&(!b[2 * n - 1] || !b[2 * n + 1])) {
        return void(puts("2"));
    }
    int ans = inf;
    int m = abs(n) + 1;
    while (b[m+m+1]) m++;
    minn(ans, 2 * m+1);

    m=abs(n)+1;
    while (b[m]) m++;
    minn(ans, 2 * m);

    printf("%d\n", ans);
    return ;
}

void init() {
    b[0] = b[1] = 1;
    rep(i,2,N-1){
        if(!b[i]) ve.pb(i);
        for(auto j:ve){
            if(i*1ll*j>=N)break;
            b[i*j]=true;
            if(i%j==0) break;
        }
    }
}

int main() {
    init();
    int T;
    scanf("%d", &T);
    while (T--)
        solve();
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 95ms
memory: 41492kb

input:

10
-2
-1
0
1
2
3
4
5
6
7

output:

6
4
3
2
1
1
2
1
2
1

result:

ok 10 numbers

Test #2:

score: 0
Accepted
time: 92ms
memory: 40624kb

input:

201
-100
-99
-98
-97
-96
-95
-94
-93
-92
-91
-90
-89
-88
-87
-86
-85
-84
-83
-82
-81
-80
-79
-78
-77
-76
-75
-74
-73
-72
-71
-70
-69
-68
-67
-66
-65
-64
-63
-62
-61
-60
-59
-58
-57
-56
-55
-54
-53
-52
-51
-50
-49
-48
-47
-46
-45
-44
-43
-42
-41
-40
-39
-38
-37
-36
-35
-34
-33
-32
-31
-30
-29
-28
-27...

output:

202
202
199
197
194
193
191
191
191
191
191
181
178
178
178
173
173
173
166
166
163
163
158
157
157
157
151
149
146
146
142
142
139
137
134
134
131
131
127
127
122
122
118
118
118
113
113
109
106
106
103
101
101
97
94
94
94
89
86
86
82
82
79
79
74
73
71
71
67
67
62
61
58
58
58
53
53
53
46
46
43
41
3...

result:

ok 201 numbers

Test #3:

score: 0
Accepted
time: 257ms
memory: 41124kb

input:

1000000
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
...

output:

2
1
1
2
1
2
1
2
2
2
1
2
1
2
2
2
1
2
1
2
2
2
1
2
53
2
2
58
1
2
1
67
2
2
2
2
1
79
2
2
1
2
1
2
2
94
1
2
2
2
2
2
1
2
2
2
2
118
1
122
1
127
2
2
2
2
1
2
2
2
1
146
1
2
2
2
157
2
1
163
2
2
1
2
173
2
2
178
1
2
2
191
191
191
2
2
1
2
2
2
1
206
1
211
2
2
1
218
1
223
2
2
1
2
2
2
2
239
2
2
2
251
251
251
2
2
1
2
2...

result:

ok 1000000 numbers