#include<bits/stdc++.h>
#define int long long
using namespace std;
inline int read(){
register int x = 0, t = 1;
register char ch=getchar();
while(ch<'0'||ch>'9'){
if(ch=='-')
t=-1;
ch=getchar();
}
while(ch>='0'&&ch<='9'){
x=(x<<1)+(x<<3)+(ch^48);
ch=getchar();
}
return x*t;
}
inline void write(int x)
{
if(x<0){
putchar('-');
x=-x;
}
if(x>9)
write(x/10);
putchar(x%10+'0');
}
void solve()
{
int h=read(),x=read(),y=read();
if(y==0)
{
printf("No\n");
return;
}
if(x==0)
{
printf("Yes\n");
return ;
}
int c=h/x;
if(c*x==h) c--;
h-=c*x;
if((c+1)*y>=h) printf("Yes\n");
else printf("No\n");
return;
}
signed main()
{
int t;
t=read();
for(int i = 1;i<=t;i++)
{
solve();
}
return 0;
}