比赛 20161115 评测结果 AAAAAAAAAA
题目名称 取石块儿 最终得分 100
用户昵称 1azyReaper 运行时间 0.208 s
代码语言 C++ 内存使用 0.28 MiB
提交时间 2016-11-15 09:05:17
显示代码纯文本
#include <iostream>
#include <algorithm>
#include <fstream>
#include <cstring>
#include <cstdio>
#include <cmath>
#define ull unsigned long long
using namespace std; 
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
ull t,n,k;
inline ull read()
{
	char tmp=getchar();
	ull ans=0,f=1;
	while(tmp<'0'||tmp>'9')
	{
		if(tmp=='-')
			f=-f;
		tmp=getchar();
	}
	while(tmp>='0'&&tmp<='9')
	{
		ans=ans*10-'0'+tmp;
		tmp=getchar();
	}
	return ans*f;
}
int main(int argc, char** argv) 
{
	freopen("tstones.in","r",stdin);
	freopen("tstones.out","w",stdout);
	t=read();
	while(t--)
	{
		n=read();
		k=read();
		if(n%(k+1)==0)
			printf("YES\n");
		else
			printf("NO\n");
	}
	return 0;
}