90求调
查看原帖
90求调
373530
Reply_楼主2022/10/6 13:58
#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();
//	cin >> h >> x >> y;
	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; 
}
2022/10/6 13:58
加载中...