题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1593
//oo68先找个使自己角速度等于elnil角速度的同心圆,并且oo68与elnil在一条向上且不在远的一侧,
#include<stdio.h>
#define PI 3.1415926
int main()
{
double r,R,v1,v2,t1,t2;
while (scanf("%lf %lf %lf",&R,&v1,&v2)!=EOF)
{
r=v1*R/v2;//同心圆的半径
t1=(R-r)/v1;//oo68所需要的时间
t2 = PI*R/v2;//elnil说所需要的时间
if (t1<t2) printf ("Yes\n");
else printf ("No\n");
}
return 0;
}