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

문제

“Homer! The aliens have been at it again!” Ethel and Homer grow corn on their rectangleshaped field. Each year just before the harvest part of their crop is destroyed when it is crushed (by visitors from outer space, according to Ethel) in a curious way. All corn stalks within circles of radius one meter are trampled (the circles always lie completely within the cornfield). Homer has noticed that if he overlays the cornfield with a two-dimensional grid, where the grid points are spaced precisely one meter apart in the x or y directions, then the centers of the circles occur only at the grid points. Luckily, Ethel and Homer have crop circle insurance, but to make a claim they must report the total area of destroyed crops. Notice that the total area counts regions where crop circles overlap only once.

Examples (the darkened circles represent the grid points).

Total area = 5.0548

Total area = 6.8402

입력

The first line of each data set contains a single integer n, where 0 ≤ n ≤ 200, indicating the number of circles that are present. The next n lines each contain exactly two integers x and y, separated by whitespace, corresponding to the coordinates of the center of a circle; a single x and y pair will occur only once in this list. The end of data will be indicated by a data set with n = 0.

출력

For each data set, output the total area covered by the circles in that data set, as described above. The area should be rounded to 4 decimal places. Follow the format shown in the Sample Output. Leave a blank line between output lines. Use the value 3.1415926535 to approximate π.

예제 입력 1

2
0 0
1 0
3
5 9
5 8
6 9
0

예제 출력 1

Data set #1: Total area = 5.0548 square meters.

Data set #2: Total area = 6.8402 square meters.