In or Out

아직 제출이 없습니다시간 제한2초메모리 제한1024 MB

문제

Born in Warsaw, Benoît Mandelbrot (1924-2010) is considered the father of fractal geometry. He studied mathematical processes that described self-similar and natural shapes known as fractals. Perhaps his most well-known contribution is the Mandelbrot set, which is pictured below (the set contains the black points):

The Mandelbrot set is typically drawn on the complex plane, a 2-dimensional plane representing all complex numbers. The horizontal axis represents the real portion of the number, and the vertical axis represents the imaginary portion. A complex number c=x+yic = x + yi (at position (x,y)(x, y) on the complex plane) is not in the Mandelbrot set if the following sequence diverges:

z_n+1z_n2+cz\_{n+1} \leftarrow z\_n^2 + c

beginning with z_0=0z\_0 = 0. That is, lim_nz_n=\lim\_{n \to \infty}{|z\_n|} = \infty. If the sequence does not diverge, then cc is in the set.

Recall the following facts about imaginary numbers and their arithmetic:

i=1i = \sqrt{-1}, i2=1i^2 = −1, (x+yi)2=x2y2+2xyi(x + yi)^2 = x^2 − y^2 + 2xyi, x+yi=x2+y2|x + yi| = \sqrt{x^2 + y^2}

where xx and yy are real numbers, and | \cdot | is known as the modulus of a complex number (in the complex plane, the modulus of x+yix + yi is equal to the straight-line distance from the origin to the the point (x,y)(x, y)).

Write a program which determines if the sequence z_nz\_n diverges for a given value cc within a fixed number of iterations. That is, is cc in the Mandelbrot set or not? To detect divergence, just check to see if z_n>2|z\_n| > 2 for any z_nz\_n that we compute – if this happens, the sequence is guaranteed to diverge.

입력

Each test case is described by a single line containing three numbers: two real numbers 3x3-3 \le x \le 3 and 3y3-3 \le y \le 3, and an integer 0r10,0000 \le r \le 10\\,000. The value of cc for this case is x+yix + yi, and rr is the maximum number of iterations to compute.

출력

For each case, display the case number followed by whether the given cc is in the Mandelbrot set, using IN or OUT.