시간 제한메모리 제한제출정답맞힌 사람정답 비율
5 초 512 MB0000.000%

문제

Kazuki is playing Worms. There is a target above the ground which he has to hit. However, it is slanted so that it is not perpendicular to the ground. Kazuki is allowed to shoot from anywhere on the ground and he wants to find the best place to stand to maximize the visible angle of the target. Find this maximum visible angle in degrees.

The world is a 2D plane, with the y-axis pointing up towards the sky. The ground can be considered as the x-axis. You will be given the coordinates of the two endpoints of the target -- (X1, Y1) and (X2, Y2). The target is a line segment between those two points.

Note that the visible angle of the target that Kazuki wants to maximize is the angle formed by the points (X1, Y1)(X, 0) and (X2, Y2). The optimal X will not necessarily be an integer.

입력

The first line of the input gives the number of test cases, T.  T lines follow. Each lines consists of 4 integers X1Y1X2 and Y2 separated by spaces, where (X1, Y1) and (X2, Y2) are the coordinates of the two ends of the target.

Limits

  • 1 ≤ T ≤ 100.
  • X1 ≠ X2
  • 1 ≤ Y1, Y2 ≤ 100000
  • -100000 ≤ X1, X2 ≤ 100000

출력

For each test case, output one line containing "Case #t: Z", where t is the case number (starting from 1) and Z is the maximum visible angle of the target in degrees that Kazuki can achieve. Answers accurate to within an absolute or relative error of 10-4 will be accepted.

예제 입력 1

3
1 1 3 1
-2 1 -1 2
0 2 3 3

예제 출력 1

Case #1: 90
Case #2: 45
Case #3: 63.8059

채점 및 기타 정보

  • 예제는 채점하지 않는다.