Error
|
|
---|---|
@Ibrahim Nash | 6381 |
@blackshadows | 6329 |
@mb1973 | 5388 |
@Quandray | 5231 |
@akhayrutdinov | 5111 |
@saiujwal13083 | 4510 |
@sanjay05 | 3762 |
@marius_valentin_dragoi | 3522 |
@sushant_a | 3459 |
@verma_ji | 3357 |
@KshamaGupta | 3318 |
Complete Leaderboard | |
|
|
@1905439 | 553 |
@terabaap123 | 508 |
@smitadiwedi1991 | 279 |
@DevanandJayakumar | 250 |
@atishagusain | 244 |
@gupta_10 | 226 |
@nipun edara | 224 |
@shubhamkhullar7 | 224 |
@sharmachandan487 | 204 |
@balunagar | 204 |
@arshjit_singh7 | 190 |
Complete Leaderboard |
You were late in the maths class which is taught by Geek. Now to punish you, Geek gave you a problem to solve. Given four integer numbers A, B, C, and N, Geek wants you to find f(f(..........f(a))) N times. Where f(x) = ((x/b) * c) - 1.
Output can be represented as a fraction P/Q, you have to output P*Q-1 modulo 109 + 7, where Q-1 is modular multiplicative inverse of Q modulus 109 + 7.
Input:
1. The first line of the input contains a single integer T denoting the number of test cases. The description of T test cases follows.
2. The first line of each test case contains four space-separated integers A, B, C, and N.
Output: For each test case, print the answer.
Constraints:
1. 1 ≤ T ≤ 10
2. 1 ≤ A, B, C ≤ 109
3. 1 ≤ N ≤ 103
Example:
Input: 2 1 3 4 1 1 3 4 2 Output: 333333336 444444447
We strongly recommend solving this problem on your own before viewing its editorial. Do you still want to view the editorial?
Yes