比赛 20161115 评测结果 AAAAAAAAAA
题目名称 取石块儿 最终得分 100
用户昵称 AAAAAAAAAA 运行时间 0.197 s
代码语言 C++ 内存使用 0.55 MiB
提交时间 2016-11-15 10:37:44
显示代码纯文本
#include<cstdio>
#define ll long long
namespace IO{
	char buf[1<<15],*fs,*ft;
	inline char gc(){return (fs==ft&&(ft=(fs=buf)+fread(buf,1,1<<15,stdin),fs==ft))?0:*fs++;}
	inline unsigned ll qr(){
		unsigned ll x=0,ch=gc();
		while(ch<'0'||ch>'9'){ch=gc();}
		while(ch>='0'&&ch<='9'){x=(x<<1)+(x<<3)+ch-'0';ch=gc();}
		return x;
	}
}using namespace IO;
using namespace std;
/**********************************************************************************************/
unsigned ll t,x,y;
int main(){
	freopen ("tstones.in","r",stdin);
	freopen ("tstones.out","w",stdout);
	int i;
	t=qr();
	for(i=0;i<t;i++){
		x=qr();
		y=qr();
		if(x%(y+1)!=0){
			printf("NO\n");}
		else{
			printf("YES\n");}
	}
	return 0;
}