0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-19 22:25:27 +00:00
OI-codes/S2OJ/475/475.cpp

28 lines
496 B
C++

#pragma GCC optimize(3)
#include <bits/stdc++.h>
using namespace std;
int n, k, a[10000005];
int main() {
scanf("%d", &n);
if (n == 1) {
printf("None\n");
exit(0);
}
printf("1\n");
a[k++] = n - 1;
for (int i = (int)floor(sqrt(n)); 2 * i < n; i++) {
if (1ull * i * i % n == 1) {
printf("%d\n", i);
a[k++] = n - i;
}
}
for (int i = k - 1; i >= 0; i--) {
printf("%d\n", a[i]);
}
return 0;
}