记录编号 349878 评测结果 AAAAAAAAAA
题目名称 取石块儿 最终得分 100
用户昵称 Gravatarsxysxy 是否通过 通过
代码语言 C++ 运行时间 1.800 s
提交时间 2016-11-15 12:20:25 内存使用 0.31 MiB
显示代码纯文本
#include <cstdio>
#include <cstdlib>
#include <cstdarg>
#include <cstring>
#include <string>
#include <queue>
#include <vector>
#include <list>
#include <iostream>
#include <algorithm>
using namespace std;
int main()
{
    freopen("tstones.in", "r", stdin);
    freopen("tstones.out", "w", stdout);
    int T;
    cin >> T;
    while(T--)
    {
        unsigned long long n, k;
        cin >> n >> k;
        if(!(n%(k+1)))puts("YES");
        else
            puts("NO");
    }
    return 0;
}