#32 Problem
** Thoughts ** It is a problem that was killed in production. If you calculate normally, the accuracy is not WA, so you have two choices: use decimal to improve the accuracy, or transform the formula to solve it. It's not fun to use decimal, so I'll solve it by transforming the formula. It's a simple transformation, though.
Implementing the above
a, b, c = map(int,input().split())
f = c - a - b
if f > 0 and f ** 2 > 4 * a * b:
print('Yes')
else:
print('No')
It was a simple math problem. See you again, good night
Recommended Posts