n | A, B, C = map(int, input().split(',')) | n | a, b, c = map(int, input().split(',')) |
| if A != 0: | | if a != 0: |
| discriminant = B ** 2 - 4 * A * C | | disc = b ** 2 - 4 * a * c |
| if discriminant > 0: | | if disc > 0: |
| root1 = (-B + discriminant ** 0.5) / (2 * A) | | x1 = (-b + disc ** 0.5) / (2 * a) |
| root2 = (-B - discriminant ** 0.5) / (2 * A) | | x2 = (-b - disc ** 0.5) / (2 * a) |
| square_roots = [] | | roots = [] |
| if root1 > 0: | | if x1 > 0: |
| positive_sqrt1 = root1 ** 0.5 | | x1_1 = x1 ** 0.5 |
| negative_sqrt1 = -root1 ** 0.5 | | x1_2 = -x1 ** 0.5 |
| square_roots.extend([positive_sqrt1, negative_sqrt1]) | | roots.extend([x1_1, x1_2]) |
| elif root1 == 0: | | elif x1 == 0: |
| square_roots.append(0) | | roots.append(0) |
| if root2 > 0: | | if x2 > 0: |
| positive_sqrt2 = root2 ** 0.5 | | x2_1 = x2 ** 0.5 |
| negative_sqrt2 = -root2 ** 0.5 | | x2_2 = -x2 ** 0.5 |
| square_roots.extend([positive_sqrt2, negative_sqrt2]) | | roots.extend([x2_1, x2_2]) |
| elif root2 == 0: | | elif x2 == 0: |
| square_roots.append(0) | | roots.append(0) |
| if square_roots: | | if roots: |
| print(*sorted(square_roots)) | | print(*sorted(roots)) |
| else: | | else: |
| print('0') | | print('0') |
n | elif discriminant == 0: | n | elif disc == 0: |
| single_root = -B / (2 * A) | | x = -b / (2 * a) |
| if single_root > 0: | | if x > 0: |
| positive_single_sqrt = single_root ** 0.5 | | x1 = x ** 0.5 |
| negative_single_sqrt = -single_root ** 0.5 | | x2 = -x ** 0.5 |
| print(*sorted([positive_single_sqrt, negative_single_sqrt])) | | print(*sorted([x1, x2])) |
| elif single_root == 0: | | elif x == 0: |
| print(0) | | print(0) |
| else: | | else: |
| print('0') | | print('0') |
| else: | | else: |
| print('0') | | print('0') |
n | elif B != 0: | n | elif b != 0: |
| linear_solution = -C / B | | root = -c / b |
| if linear_solution > 0: | | if root > 0: |
| print(*sorted([linear_solution ** 0.5, -linear_solution ** 0.5]) | | print(*sorted([root ** 0.5, -root ** 0.5])) |
| ) | | |
| elif linear_solution == 0: | | elif root == 0: |
| print('0') | | print('0') |
| else: | | else: |
| print('0') | | print('0') |
t | elif C == 0: | t | elif c == 0: |
| print('-1') | | print('-1') |
| else: | | else: |
| print('0') | | print('0') |