CF257C.View Angle

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Flatland has recently introduced a new type of an eye check for the driver's licence. The check goes like that: there is a plane with mannequins standing on it. You should tell the value of the minimum angle with the vertex at the origin of coordinates and with all mannequins standing inside or on the boarder of this angle.

As you spend lots of time "glued to the screen", your vision is impaired. So you have to write a program that will pass the check for you.

输入格式

The first line contains a single integer n (1<=n<=105)n\ (1<=n<=10^{5}) — the number of mannequins.

Next nn lines contain two space-separated integers each: xi,yi (xi,yi<=1000)x_{i},y_{i}\ (|x_{i}|,|y_{i}|<=1000) — the coordinates of the ii -th mannequin. It is guaranteed that the origin of the coordinates has no mannequin. It is guaranteed that no two mannequins are located in the same point on the plane.

输出格式

Print a single real number — the value of the sought angle in degrees. The answer will be considered valid if the relative or absolute error doesn't exceed 10610^{-6} .

输入输出样例

  • 输入#1

    2
    2 0
    0 2
    

    输出#1

    90.0000000000
    
  • 输入#2

    3
    2 0
    0 2
    -2 2
    

    输出#2

    135.0000000000
    
  • 输入#3

    4
    2 0
    0 2
    -2 0
    0 -2
    

    输出#3

    270.0000000000
    
  • 输入#4

    2
    2 1
    1 2
    

    输出#4

    36.8698976458
    

说明/提示

Solution for the first sample test is shown below:

Solution for the second sample test is shown below:

Solution for the third sample test is shown below:

Solution for the fourth sample test is shown below:

首页