比赛 |
20161115 |
评测结果 |
AAAAAAAAAA |
题目名称 |
取石块儿 |
最终得分 |
100 |
用户昵称 |
coo |
运行时间 |
0.354 s |
代码语言 |
C++ |
内存使用 |
1.08 MiB |
提交时间 |
2016-11-15 11:22:05 |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<algorithm>
#define INF (long long)1<<62
using namespace std;
unsigned long long sum,m,n,k;
long long f[100005];
int t;
int main()
{
freopen("tstones.in","r",stdin);
freopen("tstones.out","w",stdout);
scanf("%d",&t);
for(int i=1;i<=t;i++)
{
scanf("%llu%llu",&n,&k);
int sum1,sum2;
sum2=n%(k+1);
if(sum2==0)printf("YES\n");
else printf("NO\n");
}
return 0;
}