CF1750D.Count GCD
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You are given two integers n and m and an array a of n integers. For each 1≤i≤n it holds that 1≤ai≤m .
Your task is to count the number of different arrays b of length n such that:
- 1≤bi≤m for each 1≤i≤n , and
- gcd(b1,b2,b3,...,bi)=ai for each 1≤i≤n .
Here gcd(a1,a2,…,ai) denotes the greatest common divisor (GCD) of integers a1,a2,…,ai .
Since this number can be too large, print it modulo 998244353 .
输入格式
Each test consist of multiple test cases. The first line contains a single integer t ( 1≤t≤100 ) — the number of test cases. The description of test cases follows.
The first line of each test case contains two integers n and m ( 1≤n≤2⋅105 , 1≤m≤109 ) — the length of the array a and the maximum possible value of the element.
The second line of each test case contains n integers a1,a2,…,an ( 1≤ai≤m ) — the elements of the array a .
It is guaranteed that the sum of n across all test cases doesn't exceed 2⋅105 .
输出格式
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 998244353 .
输入输出样例
输入#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 b are:
- [4,2,1] ;
- [4,2,3] ;
- [4,2,5] .
In the second test case, the only array satisfying the demands is [1,1] .
In the third test case, it can be proven no such array exists.