blob: 9ba42291cca7c8133180be8b5775eaaf8ba683d1 (
plain)
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
|
#include <cmath>
#include <iostream>
const int M = 5000010;
const int SM = std::sqrt(M / 2);
int s[M];
int main() {
int n;
std::cin >> n;
for (int i = 0; i <= SM; i++) {
const int i2 = i * i;
const int SMB = M - i2;
for (int j = i; j * j < SMB; j++) {
const int a = i2 + j * j;
if (s[a] == 0) {
s[a] = i + 1;
}
}
}
int sm = std::sqrt(n);
for (int a = 0; a <= sm; a++) {
int as = a * a;
int bsm = n - 3 * a * a;
for (int b = a; b * b <= bsm; b++) {
int bs = b * b + as;
int c = s[n - bs];
if (c != 0) {
c = c - 1;
std::cout << a << ' ' << b << ' ' << c << ' '
<< std::sqrt(n - bs - c * c);
return 0;
}
}
}
return 0;
}
|