시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 128 MB2510840.000%

문제

The HOA (Home Owners Association) of Hobbiton, the village in the Shire where Bilbo lives, is trying to create a new map showing precisely the boundaries of the houses in Hobbiton. But the unique geometry of Hobbiton is making this complicated, since a land parcel (on which a house is built) may either be a circle or a rectangle.

Before figuring out the boundaries and drawing the new map, the Hobbiton HOA would like to make sure that all its records are correct, and specifically that no two land parcels overlap with each other. It knows how to decide if two land parcels overlap if both of them are circles, or if both of them are rectangles. However, it needs your help when one of the land parcels is a rectangle and the other one is a circle.

입력

The first line in the test data file contains the number of test cases (< 100). After that, each line contains one test case. Each test case comprises 7 numbers (of the type double). The first three numbers denote the circle, specifically, radius, x-coordinate of the center, y-coordinate of the center. The next four numbers represent the rectangle, specifically, the x and y coordinates of the lower left and upper right corners. More precisely, from the figure above, the 7 numbers are: r, xc, yc, xl, yl, xu, yu. You can assume that all the numbers are positive.

출력

For each test case, you are to output whether the circle and the rectangle overlap. The exact format is shown below in the examples.

출력 형식

정확한 출력 형식은 제출에서 언어를 Java로 설정하면 확인할 수 있다.

예제 입력 1

4
10.0 50.0 50.0 55.0 55.0 56.0 56.0
20.0 50.0 50.0 55.0 55.0 56.0 56.0
10.0 50.0 50.0 30.0 30.0 31.0 31.0
10.5 50.5 50.5 40.0 40.0 41.0 41.0

예제 출력 1

The given circle and rectangle overlap.
The given circle and rectangle overlap.
The given circle and rectangle do not overlap.
The given circle and rectangle do not overlap.