比赛 |
20161115 |
评测结果 |
AAAAAAAAAA |
题目名称 |
取石块儿 |
最终得分 |
100 |
用户昵称 |
jjky |
运行时间 |
0.258 s |
代码语言 |
C++ |
内存使用 |
0.31 MiB |
提交时间 |
2016-11-15 11:13:04 |
显示代码纯文本
#include<cstdio>
#include<cstdlib>
#include<iostream>
#include<algorithm>
#include<cmath>
#include<queue>
#include<vector>
#include<set>
#include<map>
#include<cstring>
using namespace std;
int T;
unsigned long long n,k;
int main(){
freopen("tstones.in","r",stdin);
freopen("tstones.out","w",stdout);
int i;
scanf("%d",&T);
for(i=1;i<=T;i++){
scanf("%lld%lld",&n,&k);
if(n%(k+1)==0)
printf("YES\n");
else
printf("NO\n");
}
fclose(stdin);fclose(stdout);
return 0;
}