记录编号 349873 评测结果 AAAAAAAAAA
题目名称 取石块儿 最终得分 100
用户昵称 GravatarArrow 是否通过 通过
代码语言 C++ 运行时间 0.186 s
提交时间 2016-11-15 12:15:28 内存使用 0.28 MiB
显示代码纯文本
#include<iostream>
#include<cstdio>
using namespace std;
inline unsigned long long read()
{
	unsigned long long x=0;
	char ch=getchar();
	while(!isdigit(ch))
	{
		ch=getchar();
	}
	while(isdigit(ch))
	{
		x=(x<<3)+(x<<1)+ch-'0';
		ch=getchar();
	}
	return x;
}
int main()
{
	freopen("tstones.in","r",stdin);
	freopen("tstones.out","w",stdout);
	unsigned long long n,k,t;
	t=read();
	for(int i=0;i<t;i++)
	{
		n=read();
		k=read();
		if(n%(k+1)==0)
			printf("YES\n");
		else printf("NO\n");
	}
	return 0;
}