记录编号 349847 评测结果 AAAAAAAAAA
题目名称 取石块儿 最终得分 100
用户昵称 Gravatar__stdcall 是否通过 通过
代码语言 C++ 运行时间 0.432 s
提交时间 2016-11-15 12:07:21 内存使用 0.31 MiB
显示代码纯文本
#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <cstdlib>
#include <cctype>

using namespace std;
typedef unsigned long long ull;

ull readull() {
    ull num = 0; char ch;
    while( isspace(ch=getchar()) );
    do {
        num *= 10;
        num += ch-'0';
    }while( !isspace(ch=getchar()) );
    return num;
}

int main() {
    freopen( "tstones.in", "r", stdin );
    freopen( "tstones.out", "w", stdout );
    int T; scanf( "%d", &T );
    while( T-- ) {
        ull n,k;
        n = readull(); k = readull();
        if( n%(k+1) == 0 ) printf( "YES\n" );
        else printf( "NO\n" );
    }
    return 0;
}