#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 integers, you are required to deal with the following operations.
- For each integer in the interval , change its value to previous value multiplying or dividing an integer .
- Output the remainder of the product of all the integers in interval mod a particular modulus.
Input
First line of the input is a single integer (), indicating there are test cases.
The first line of each test case contains two numbers and M .
The second line contains numbers, the initial values of . .
The third line contains a single number .
Each of the next lines represents an operation.
M L R x
means for each integer in the interval , changing its value to previous value multiplying an integer , we guarantee that is not exceeded and non negative.D L R x
means for each integer in the interval , changing its value to previous value dividing an integer , we guarantee that is positive integer not exceeded and all the integers in the interval can be divided into x parts with no remainder.Q L R
means output the remainder of the product of the integer in interval mod .
For all the operations, we guarantee that and there is a blank line before each test case.
Output
For each test case, print Case #t:
first, in which is the number of the test case starting from .
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