mirror of
https://github.com/Kiritow/OJ-Problems-Source.git
synced 2024-03-22 13:11:29 +08:00
Create 1234.cpp
This commit is contained in:
parent
dfc8d86b5f
commit
e844602a1e
47
NYOJ/1234.cpp
Normal file
47
NYOJ/1234.cpp
Normal file
|
@ -0,0 +1,47 @@
|
||||||
|
#include <cstdio>
|
||||||
|
#include <cstdlib>
|
||||||
|
#include <cstring>
|
||||||
|
#include <cmath>
|
||||||
|
using namespace std;
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
int n,R,r;
|
||||||
|
while(scanf("%d %d %d",&n,&R,&r)==3)
|
||||||
|
{
|
||||||
|
if(n==1)
|
||||||
|
{
|
||||||
|
if(R<r)
|
||||||
|
{
|
||||||
|
printf("NO\n");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
printf("YES\n");
|
||||||
|
}
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if(n==2)
|
||||||
|
{
|
||||||
|
if(R<2*r)
|
||||||
|
{
|
||||||
|
printf("NO\n");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
printf("YES\n");
|
||||||
|
}
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
int maxN=1/(asin((double)r/(R-r))/3.1415927);
|
||||||
|
if(n<=maxN)
|
||||||
|
{
|
||||||
|
printf("YES\n");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
printf("NO\n");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user