시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 512 MB300938435.294%

문제

Sheila is a student and she drives a typical student car: it is old, slow, rusty, and falling apart. Recently, the needle on the speedometer fell off. She glued it back on, but she might have placed it at the wrong angle. Thus, when the speedometer reads s, her true speed is s + c, where c is an unknown constant (possibly negative).

Sheila made a careful record of a recent journey and wants to use this to compute c. The journey consisted of n segments. In the ith segment she traveled a distance of di and the speedometer read si for the entire segment. This whole journey took time t. Help Sheila by computing c.

Note that while Sheila’s speedometer might have negative readings, her true speed was greater than zero for each segment of the journey.

입력

The first line of input contains two integers n (1 ≤ n ≤ 1 000), the number of sections in Sheila’s journey, and t (1 ≤ t ≤ 106), the total time. This is followed by n lines, each describing one segment of Sheila’s journey. The ith of these lines contains two integers di (1 ≤ di ≤ 1 000) and si (|si| ≤ 1 000), the distance and speedometer reading for the ith segment of the journey. Time is specified in hours, distance in miles, and speed in miles per hour.

출력

Display the constant c in miles per hour. Your answer should have an absolute or relative error of less than 10−6.

예제 입력 1

3 5
4 -1
4 0
10 3

예제 출력 1

3.000000000

예제 입력 2

4 10
5 3
2 2
3 6
3 1

예제 출력 2

-0.508653377