比赛 20161115 评测结果 AAAAAAAAAA
题目名称 取石块儿 最终得分 100
用户昵称 Riolu 运行时间 0.251 s
代码语言 C++ 内存使用 0.28 MiB
提交时间 2016-11-15 08:48:31
显示代码纯文本
/*=========================================*
  * 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;
}