记录编号 | 351062 | 评测结果 | AAAAAAAAAA | ||
---|---|---|---|---|---|
题目名称 | 取石块儿 | 最终得分 | 100 | ||
用户昵称 | 夕见ai | 是否通过 | 通过 | ||
代码语言 | C++ | 运行时间 | 0.234 s | ||
提交时间 | 2016-11-16 10:05:35 | 内存使用 | 0.29 MiB | ||
#include<cstdio> using namespace std; unsigned long long t,n,k; int main(){ freopen("tstones.in","r",stdin); freopen("tstones.out","w",stdout); scanf("%llu",&t); unsigned long long i,r; for(i=1;i<=t;i++){ scanf("%llu%llu",&n,&k); r=n%(k+1); if(!r)printf("YES\n"); if(r)printf("NO\n"); } return 0; }