CF1750D.Count GCD

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

You are given two integers nn and mm and an array aa of nn integers. For each 1in1 \le i \le n it holds that 1aim1 \le a_i \le m .

Your task is to count the number of different arrays bb of length nn such that:

  • 1bim1 \le b_i \le m for each 1in1 \le i \le n , and
  • gcd(b1,b2,b3,...,bi)=ai\gcd(b_1,b_2,b_3,...,b_i) = a_i for each 1in1 \le i \le n .

Here gcd(a1,a2,,ai)\gcd(a_1,a_2,\dots,a_i) denotes the greatest common divisor (GCD) of integers a1,a2,,aia_1,a_2,\ldots,a_i .

Since this number can be too large, print it modulo 998244353998\,244\,353 .

输入格式

Each test consist of multiple test cases. The first line contains a single integer tt ( 1t1001 \le t \le 100 ) — the number of test cases. The description of test cases follows.

The first line of each test case contains two integers nn and mm ( 1n21051 \le n \le 2 \cdot 10^5 , 1m1091 \le m \le 10^9 ) — the length of the array aa and the maximum possible value of the element.

The second line of each test case contains nn integers a1,a2,,ana_1, a_2, \ldots, a_n ( 1aim1 \le a_i \le m ) — the elements of the array aa .

It is guaranteed that the sum of nn across all test cases doesn't exceed 21052 \cdot 10^5 .

输出格式

For each test case, print a single integer — the number of different arrays satisfying the conditions above. Since this number can be large, print it modulo 998244353998\,244\,353 .

输入输出样例

  • 输入#1

    5
    3 5
    4 2 1
    2 1
    1 1
    5 50
    2 3 5 2 3
    4 1000000000
    60 30 1 1
    2 1000000000
    1000000000 2

    输出#1

    3
    1
    0
    595458194
    200000000

说明/提示

In the first test case, the possible arrays bb are:

  • [4,2,1][4,2,1] ;
  • [4,2,3][4,2,3] ;
  • [4,2,5][4,2,5] .

In the second test case, the only array satisfying the demands is [1,1][1,1] .

In the third test case, it can be proven no such array exists.

首页