Hide

Problem J
Perfect Squares

A famous theorem in number theory states that every positive integer can be written as the sum of four perfect squares. You have noticed, though, that usually fewer squares are enough. For example, $27$ only requires three perfect squares: $27 = 5^2 + 1^2 + 1^2$.

You share your observations with a mathematician friend, who rattles off the following perfect squares facts:

  • An odd prime $p$ can be written as the sum of two squares if and only if $p \equiv 1 \pmod{4}$.

  • If two positive integers $a$ and $b$ can be written as the sum of two squares, then so can their product $ab$.

  • Every positive integer can be written as the sum of three perfect squares, unless it is of the form $4^a \cdot (8b+7)$, where $a$ and $b$ are some non-negative integers.

This last fact about sums of three squares intrigues you, and so you would like to write a program that verifies the claim is true by producing the actual squares.

Input

Input contains a single integer $n$ ($1 \leq n \leq 10^{12}$).

Output

If $n$ can be expressed as the sum of three squares, output three integers $x$, $y$, and $z$. Your answer will be judged correct if $0\leq x,y,z \leq \sqrt{n}$ and $n = x^2 + y^2 + z^2$. If there are multiple valid choices for $x$, $y$, and $z$ you may output any of them. You must output exactly three integers, even if $n$ can be expressed as the sum of two or fewer squares.

If $n$ cannot be expressed as the sum of three squares, output $-1$ and no further output.

Sample Input 1 Sample Output 1
22
3 3 2
Sample Input 2 Sample Output 2
23
-1
Sample Input 3 Sample Output 3
999999999989
471545 0 881842

Please log in to submit a solution to this problem

Log in