#Lutece0087. Easy Problem With Numbers

Easy Problem With Numbers

Migrated from Lutece 87 Easy Problem With Numbers

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

Give a sequence of NN integers, you are required to deal with the following operations.

  1. For each integer in the interval [L,R][L, R], change its value to previous value multiplying or dividing an integer xx.
  2. Output the remainder of the product of all the integers in interval [L,R][L, R] mod a particular modulus.

Input

First line of the input is a single integer TT(1T151\leq T\leq 15), indicating there are TT test cases.

The first line of each test case contains two numbers NN (1N104)(1 \leq N \leq 10^4) and M (1M109)(1 \leq M \leq 10^9).

The second line contains NN numbers, the initial values of A1,A2,,ANA_1, A2, \cdots , A_N. 0Ai1090 \leq A_i \leq 10^9.

The third line contains a single number QQ.

Each of the next QQ lines represents an operation.

  • M L R x means for each integer in the interval [L,R][L, R], changing its value to previous value multiplying an integer xx, we guarantee that xx is not exceeded 10910^9 and non negative.
  • D L R x means for each integer in the interval [L,R][L, R], changing its value to previous value dividing an integer xx, we guarantee that xx is positive integer not exceeded 10910^9 and all the integers in the interval [L,R][L, R] can be divided into x parts with no remainder.
  • Q L R means output the remainder of the product of the integer in interval [L,R][L, R] mod MM.

For all the operations, we guarantee that LRL \leq R and there is a blank line before each test case.

Output

For each test case, print Case #t: first, in which tt is the number of the test case starting from 11.

Then for each Q L R operation, output a single num in each line as the input says.

Samples

1

5 6
10 2 6 9 10
5
Q 1 2
M 1 4 3
Q 1 5
D 1 3 2
Q 1 3
Case #1:
2
0
3

Resources

Sichuan State Programming Contest 2012