QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#595300 | #9354. Justifying the Conjecture | yeah14 | WA | 80ms | 22588kb | C++17 | 1.8kb | 2024-09-28 13:21:30 | 2024-09-28 13:21:30 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
#define int long long
#define ull long long
#define PII pair<int ,int>
const int INF = -1145141919810;
const int mod = 1e9 + 7;
const int N = 1e7;
int a[N];
int sum[N];
int fa[N];
int ka[N];
vector<int>pr;
bool vis[N];
void er(int n) {
int cnt = 0;
memset(vis, 0, sizeof(vis));
for (int i = 2; i <= n; i++) {
if (!vis[i])pr.push_back(i);
for (int j = 0; j < pr.size(); j++) {
if (i * pr[j] > n)break;
vis[i * pr[j]] = 1;
if (i * pr[j] == 0)break;
}
}
}
int is_p(int x) {
if (x == 1)return 1;
for (int i = 0; i < pr.size(); i++) {
if (x == pr[i])return 1;
if (x % pr[i] == 0)return 0;
if (pr[i] > x)break;
}
return 1;
}
void solve() {
int n;
cin >> n;
/*for (int i = 0; i < pr.size(); i++) {
int a = pr[i], b = n - a;
if (is_p(b) == 0) {
cout << a << " " << b << endl;
return ;
}
}*/
if (n % 2 == 0) {
int a = 2, b = n - a;
if (b == 1 || b == 2)cout << -1 << endl;
else cout << a << " " << b << endl;
}
else {
int a = 3, b = n - a;
if (b == 1 || b == 2)cout << -1 << endl;
else cout << a << " " << b << endl;
}
//cout << -1 << endl;
}
//&&(((sum[n]+k)%mid==0)||(sum[n]/mid!=(sum[n]+k)/mid)||(mid-(sum[n]%mid)>=k))
signed main() {
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int t=1;
cin >> t;
//t = 1;
er(9e6);
while (t--)solve();
}
//int n;
//cin >> n;
//for (int i = 1; i <= n; i++) {
// cin >> a[i];
//}
//int maxx = 0, minn = INF;
//int sum = 0;
//for (int i = n; i <= 1; i++) {
// sum += minn;
// if (top == 0) {
// minn = a[i];
// st[top++] = a[i];
// }
// else {
// if (a[i] > top && a[i] > minn)
// }
//}
//cout << maxx - minn << endl;
//7 2 1 4 5 1 3 3
//4 1000 1000 1000 1000
//0
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 45ms
memory: 22548kb
input:
3 4 6 7
output:
-1 2 4 3 4
result:
ok ok
Test #2:
score: -100
Wrong Answer
time: 80ms
memory: 22588kb
input:
100000 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 8...
output:
3 -2 2 0 3 0 -1 -1 2 4 3 4 2 6 3 6 2 8 3 8 2 10 3 10 2 12 3 12 2 14 3 14 2 16 3 16 2 18 3 18 2 20 3 20 2 22 3 22 2 24 3 24 2 26 3 26 2 28 3 28 2 30 3 30 2 32 3 32 2 34 3 34 2 36 3 36 2 38 3 38 2 40 3 40 2 42 3 42 2 44 3 44 2 46 3 46 2 48 3 48 2 50 3 50 2 52 3 52 2 54 3 54 2 56 3 56 2 58 3 58 2 60 3 ...
result:
wrong answer Integer -2 violates the range [1, 10^9]