Doubt related pythagoras triplet


what is problem in this code ,it is not passing all the test cases?

formula:
n is even:
System.out.println(((n * n) / 4) - 1 + " " + (((n * n) / 4) + 1));
n is odd:
System.out.println((n * n - 1) / 2 + " " + (n * n + 1) / 2);

https://ide.codingblocks.com/s/167872 still it is not passing the testcases

actually, long values given in the test case that is failing ur code.

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.