比赛 20161115 评测结果 AAAAAAAAAA
题目名称 取石块儿 最终得分 100
用户昵称 coolkid 运行时间 0.241 s
代码语言 C++ 内存使用 0.31 MiB
提交时间 2016-11-15 09:41:53
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;

typedef unsigned long long ULL;
ULL T,n,k;

int main(){
	freopen("tstones.in","r",stdin);
	freopen("tstones.out","w",stdout);
	scanf("%llu",&T);
	while(T--){
		scanf("%llu%llu",&n,&k);
		k++;
		if(n%k==0) puts("YES");
		else puts("NO");
	}
	return 0;
}