比赛 |
20161115 |
评测结果 |
AWWWWWWWWW |
题目名称 |
取石块儿 |
最终得分 |
10 |
用户昵称 |
ss |
运行时间 |
1.368 s |
代码语言 |
C++ |
内存使用 |
14.01 MiB |
提交时间 |
2016-11-15 09:30:02 |
显示代码纯文本
#include<cstdio>
#include<iostream>
#include<algorithm>
using namespace std;
const int maxn=1000000+10;
unsigned long long n[maxn] ,k[maxn];
int tk;
bool book;
int main()
{
freopen("tstones.in", "r", stdin);
freopen("tstones.out", "w", stdout);
int i, j;
cin>>tk;
for(i=1; i<=tk; i++)
{
scanf("%d%d", &n[i], &k[i]);
}
for(i=1; i<=tk; i++)
{
if(n[i]%(k[i]+1)==0) book=1;
if(book) cout<<"YES"<<endl;
else cout<<"NO"<<endl;
}
return 0;
}