记录编号 |
349976 |
评测结果 |
AAAAAAAAAA |
题目名称 |
取石块儿 |
最终得分 |
100 |
用户昵称 |
Riolu |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.231 s |
提交时间 |
2016-11-15 14:42:04 |
内存使用 |
0.31 MiB |
显示代码纯文本
/*=========================================*
* Auther: Riolu
* Time: 2016.11.15
* ©Copyright 2016 Riolu. All Rights Reserved.
*=========================================*/
#include <cstdio>
#include <string>
#include <iostream>
using namespace std;
typedef unsigned long long ll;
const int N= 2000000;
int main(){
freopen("tstones.in","r",stdin);
freopen("tstones.out","w",stdout);
ll n,m;
int t;
scanf("%d",&t);
while(t){
t--;
scanf("%llu%llu",&n,&m);
if(n%(m+1))printf("NO\n");
else printf("YES\n");
}
return 0;
}