QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#725081 | #9167. Coprime Array | gzy | WA | 0ms | 3848kb | C++14 | 755b | 2024-11-08 16:10:00 | 2024-11-08 16:10:01 |
Judging History
answer
#include<bits/stdc++.h>
#define pb push_back
#define pi pair<int,int>
#define F first
#define S second
#define mp make_pair
#define vector basic_string
using namespace std;
using ll = long long;
using db = double;
const int N = 2e5 + 7;
int i, j, k, n, m;
ll s;
vector<int> d;
int main() {
// freopen(".in", "r", stdin);
// freopen(".out", "w", stdout);
// ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);
scanf("%d%d", &n, &m);
while(1) {
if(__gcd(m, n + k) == 1) break;
++k;
}
if(__gcd(k, m) == 1) {
cout << "2\n" << -k << " " << n + k << "\n";
} else {
cout << "3\n";
for(i = 1; i <= k; i++) {
if(__gcd(m, i) == 1) break;
}
cout << n+k-m << " " << -i+m << " " << -(k-i);
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3692kb
input:
9 6
output:
3 5 5 -1
result:
ok Correct
Test #2:
score: 0
Accepted
time: 0ms
memory: 3760kb
input:
14 34
output:
2 -1 15
result:
ok Correct
Test #3:
score: -100
Wrong Answer
time: 0ms
memory: 3848kb
input:
1000000000 223092870
output:
3 776907137 223092869 -6
result:
wrong answer Element at position 3 is not coprime to x