You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
514 B
18 lines
514 B
#include <bits/stdc++.h>
|
|
using namespace std;
|
|
|
|
int main() {
|
|
int n;
|
|
cin >> n;
|
|
for (int a = 0; a * a <= n / 4; a++)
|
|
for (int b = a; a * a + b * b <= n / 3; b++)
|
|
for (int c = b; a * a + b * b + c * c <= n / 2; c++) {
|
|
int t = n - a * a - b * b - c * c;
|
|
int d = sqrt(t);
|
|
if (d * d == t) {
|
|
printf("%d %d %d %d\n", a, b, c, d);
|
|
exit(0);
|
|
}
|
|
}
|
|
return 0;
|
|
} |