比赛 20161115 评测结果 AAAAAAAAAA
题目名称 取石块儿 最终得分 100
用户昵称 asddddd 运行时间 1.192 s
代码语言 C++ 内存使用 0.31 MiB
提交时间 2016-11-15 10:44:26
显示代码纯文本
#include <iostream>
#include <queue>
#include <cstdio>
#define ul unsigned long long
using namespace std;
inline ul in(){
	ul x=0,c=getchar();
	while(c<'0'||c>'9') c=getchar();
	for(;c>='0'&&c<='9';c=getchar()) x=(x<<1)+(x<<3)+(c^48);
	return x;
}
int main(){
	freopen("tstones.in","r",stdin);
	freopen("tstones.out","w",stdout);
	int t;
	t=in();
	while(t--){
		ul a=in(),b=in();
		if(a%(b+1)==0)
		cout<<"YES";
		else
		cout<<"NO";
		cout<<endl;
	}
}