CF1814A.Coins

传统题 时间 2000 ms 内存 256 MiB 3 尝试 1 已通过 1 标签

Coins

In Berland, there are two types of coins, having denominations of 22 and kk burles.

Your task is to determine whether it is possible to represent nn burles in coins, i. e. whether there exist non-negative integers xx and yy such that 2x+ky=n2 \cdot x + k \cdot y = n.

Input

The first line contains a single integer tt (1t1041 \le t \le 10^4) — the number of test cases.

The only line of each test case contains two integers nn and kk (1kn10181 \le k \le n \le 10^{18}; k2k \ne 2).

Output

For each test case, print YES if it is possible to represent nn burles in coins; otherwise, print NO. You may print each letter in any case (YES, yes, Yes will all be recognized as positive answer, NO, no and nO will all be recognized as negative answer).

Note

In the first test case, you can take one coin with denomination 22 and one coin with denomination k=3k = 3.

In the second test case, you can take three coins with denomination 22. Alternatively, you can take six coins with denomination k=1k = 1.

In the third test case, there is no way to represent 77 burles.

In the fourth test case, you can take one coin with denomination k=8k = 8.

Samples

4
5 3
6 1
7 4
8 8
YES
YES
NO
YES

在线编程 IDE

建议全屏模式获得最佳体验