EtashGuha's picture
Add files using upload-large-folder tool
09c47e8 verified
|
raw
history blame
1.03 kB

20_B. Equation

Problem Description

You are given an equation:

Ax2 + Bx + C = 0.

Your task is to find the number of distinct roots of the equation and print all of them in ascending order.

Input

The first line contains three integer numbers A, B and C ( - 105 ≤ A, B, C ≤ 105). Any coefficient may be equal to 0.

Output

In case of infinite root count print the only integer -1. In case of no roots print the only integer 0. In other cases print the number of root on the first line and the roots on the following lines in the ascending order. Print roots with at least 5 digits after the decimal point.

Examples

Input

1 -5 6

Output

2 2.0000000000 3.0000000000

Contest Information

  • Contest ID: 20
  • Problem Index: B
  • Points: 1000.0
  • Rating: 2000
  • Tags: math
  • Time Limit: {'seconds': 1, 'nanos': 0} seconds
  • Memory Limit: 256000000 bytes

Task

Solve this competitive programming problem. Provide a complete solution that handles all the given constraints and edge cases.