记录编号 | 349846 | 评测结果 | AAAAAAAAAA | ||
---|---|---|---|---|---|
题目名称 | 取石块儿 | 最终得分 | 100 | ||
用户昵称 | 是否通过 | 通过 | |||
代码语言 | C++ | 运行时间 | 0.095 s | ||
提交时间 | 2016-11-15 12:07:20 | 内存使用 | 0.32 MiB | ||
#include<cstdio> #define ll long long namespace IO{ char buf[1<<15],*fs,*ft; inline char gc(){return (fs==ft&&(ft=(fs=buf)+fread(buf,1,1<<15,stdin),fs==ft))?0:*fs++;} inline unsigned ll qr(){ unsigned ll x=0,ch=gc(); while(ch<'0'||ch>'9'){ch=gc();} while(ch>='0'&&ch<='9'){x=(x<<1)+(x<<3)+ch-'0';ch=gc();} return x; } }using namespace IO; using namespace std; /**********************************************************************************************/ unsigned ll t,x,y; int main(){ freopen ("tstones.in","r",stdin); freopen ("tstones.out","w",stdout); int i; t=qr(); for(i=0;i<t;i++){ x=qr(); y=qr(); if(x%(y+1)!=0){ printf("NO\n");} else{ printf("YES\n");} } return 0; }