Preparando MOJI

New Year Table

2000ms 262144K

Description:

Gerald is setting the New Year table. The table has the form of a circle; its radius equals R. Gerald invited many guests and is concerned whether the table has enough space for plates for all those guests. Consider all plates to be round and have the same radii that equal r. Each plate must be completely inside the table and must touch the edge of the table. Of course, the plates must not intersect, but they can touch each other. Help Gerald determine whether the table is large enough for n plates.

Input:

The first line contains three integers n, R and r (1 ≤ n ≤ 100, 1 ≤ r, R ≤ 1000) — the number of plates, the radius of the table and the plates' radius.

Output:

Print "YES" (without the quotes) if it is possible to place n plates on the table by the rules given above. If it is impossible, print "NO".

Remember, that each plate must touch the edge of the table.

Sample Input:

4 10 4

Sample Output:

YES

Sample Input:

5 10 4

Sample Output:

NO

Sample Input:

1 10 10

Sample Output:

YES

Note:

The possible arrangement of the plates for the first sample is:

Informação

Codeforces

Provedor Codeforces

Código CF140A

Tags

geometrymath

Submetido 0

BOUA! 0

Taxa de BOUA's 0%

Datas 09/05/2023 08:34:03

Relacionados

Nada ainda