记录编号 | 351199 | 评测结果 | AAAAAAAAAA | ||
---|---|---|---|---|---|
题目名称 | 取石块儿 | 最终得分 | 100 | ||
用户昵称 | Magic_Sheep | 是否通过 | 通过 | ||
代码语言 | C++ | 运行时间 | 0.256 s | ||
提交时间 | 2016-11-16 11:37:25 | 内存使用 | 0.31 MiB | ||
#include<cstdio> #include<iostream> using namespace std; long long n,m,T; int main() { freopen("tstones.in","r",stdin); freopen("tstones.out","w",stdout); scanf("%lld",&T); while(T--) { scanf("%lld%lld",&n,&m); m++; if(n%m==0) puts("YES"); else puts("NO"); } return 0; }