301373: CF257C. View Angle

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

View Angle

题意翻译

平面上有 $n(1\leq n\leq 10^5)$ 个点。你要从原点引出两条射线,将平面分成两个部分,保证其中一个部分覆盖了所有的点。问这个部分与原点所夹的角的最小度数。 请参照样例解释对题意进行更深入的理解。

题目描述

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<=10^{5}) $ — the number of mannequins. Next $ n $ lines contain two space-separated integers each: $ x_{i},y_{i}\ (|x_{i}|,|y_{i}|<=1000) $ — the coordinates of the $ i $ -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 $ 10^{-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: ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF257C/52a22a58227cc8e3cd175061056d878bb5e11b91.png)Solution for the second sample test is shown below: ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF257C/ec228a55fc379b89df62107b0fadfa9651c34033.png)Solution for the third sample test is shown below: ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF257C/477a3f097accae6f2425e7d37a546ed3af1f9885.png)Solution for the fourth sample test is shown below: ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF257C/8ce489535c5d9f609dbb5be22269ebed1502e2d2.png)

Input

题意翻译

平面上有 $n(1\leq n\leq 10^5)$ 个点。你要从原点引出两条射线,将平面分成两个部分,保证其中一个部分覆盖了所有的点。问这个部分与原点所夹的角的最小度数。 请参照样例解释对题意进行更深入的理解。

加入题单

算法标签: