比赛 20161115 评测结果 AAAAAAAAAA
题目名称 取石块儿 最终得分 100
用户昵称 24193 运行时间 1.969 s
代码语言 C++ 内存使用 0.31 MiB
提交时间 2016-11-15 09:23:37
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cstring>
#include<cstdlib>
#include<cmath>
#include<algorithm>
#include<queue>
using namespace std;
long long t,n,k;
int main()
{
	freopen("tstones.in","r",stdin);
	freopen("tstones.out","w",stdout);
	cin>>t;
	for(int i=0;i<t;i++)
	  {
	  	cin>>n>>k;
	  	int a=n/(k+1);
	  	int b=n%(k+1);
	  	if(b==0) cout<<"YES"<<endl;
//	  	  else if(n-(a-1)*(k+1)<=2*k) cout<<"YES";
	  	    else  cout<<"NO"<<endl;
	  }
	fclose(stdin);fclose(stdout);
	return 0;
}