CF1478B.Nezzar and Lucky Number

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Nezzar's favorite digit among 1,,91,\ldots,9 is dd . He calls a positive integer lucky if dd occurs at least once in its decimal representation.

Given qq integers a1,a2,,aqa_1,a_2,\ldots,a_q , for each 1iq1 \le i \le q Nezzar would like to know if aia_i can be equal to a sum of several (one or more) lucky numbers.

输入格式

The first line contains a single integer tt ( 1t91 \le t \le 9 ) — the number of test cases.

The first line of each test case contains two integers qq and dd ( 1q1041 \le q \le 10^4 , 1d91 \le d \le 9 ).

The second line of each test case contains qq integers a1,a2,,aqa_1,a_2,\ldots,a_q ( 1ai1091 \le a_i \le 10^9 ).

输出格式

For each integer in each test case, print "YES" in a single line if aia_i can be equal to a sum of lucky numbers. Otherwise, print "NO".

You can print letters in any case (upper or lower).

输入输出样例

  • 输入#1

    2
    3 7
    24 25 27
    10 7
    51 52 53 54 55 56 57 58 59 60

    输出#1

    YES
    NO
    YES
    YES
    YES
    NO
    YES
    YES
    YES
    YES
    YES
    YES
    NO

说明/提示

In the first test case, 24=17+724 = 17 + 7 , 2727 itself is a lucky number, 2525 cannot be equal to a sum of lucky numbers.

首页