300981: CF185D. Visit of the Great

Memory Limit:256 MB Time Limit:3 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Visit of the Great

题意翻译

- $T(T\leq 10^5)$ 组询问,每组询问给出四个数 $k,l,r,p$,其中 $p$ 为质数。 - 求 $\operatorname{lcm}(k^{2^{l}}+1,k^{2^{l+1}}+1,k^{2^{l+2}}+1,\dots,k^{2^{r}}+1)\bmod p$ 的值。 - $k\leq 10^6,l,r\leq 10^{18},p\leq 10^9$。 感谢 @tzc_wk 提供的翻译。

题目描述

The Great Mushroom King descended to the dwarves, but not everyone managed to see him. Only the few chosen ones could see the King. We know that only $ LCM(k^{2^l}+1,k^{2^{l+1}}+1,...,k^{2^r}+1) $ dwarves can see the Great Mushroom King. Numbers $ k $ , $ l $ , $ r $ are chosen by the Great Mushroom King himself in some complicated manner which is unclear to common dwarves. The dwarven historians decided to document all visits of the Great Mushroom King. For each visit the dwarven historians know three integers $ k_{i} $ , $ l_{i} $ , $ r_{i} $ , chosen by the Great Mushroom King for this visit. They also know a prime number $ p_{i} $ . Help them to count the remainder of dividing the number of dwarves who can see the King, by number $ p_{i} $ , for each visit.

输入输出格式

输入格式


The first line contains the single integer $ t $ $ (1<=t<=10^{5}) $ — the number of the King's visits. Each of the following $ t $ input lines contains four space-separated integers $ k_{i} $ , $ l_{i} $ , $ r_{i} $ and $ p_{i} $ $ (1<=k_{i}<=10^{6} $ ; $ 0<=l_{i}<=r_{i}<=10^{18}; 2<=p_{i}<=10^{9}) $ — the numbers, chosen by the Great Mushroom King and the prime module, correspondingly. It is guaranteed that for all visits number $ p_{i} $ is prime. Please do not use the %lld specifier to read or write 64-bit integers in С++. It is preferred to use the cin, cout streams or the %I64d specifier.

输出格式


For each visit print the answer on a single line — the remainder of dividing the number of the dwarves who can see the King this time, by number $ p_{i} $ . Print the answers for the visits in the order, in which the visits are described in the input.

输入输出样例

输入样例 #1

2
3 1 10 2
5 0 4 3

输出样例 #1

0
0

说明

We consider that $ LCM(a_{1},a_{2},...,a_{n}) $ represents the least common multiple of numbers $ a_{1} $ , $ a_{2} $ , $ ... $ , $ a_{n} $ . We consider that $ x^{0}=1 $ , for any $ x $ .

Input

题意翻译

- $T(T\leq 10^5)$ 组询问,每组询问给出四个数 $k,l,r,p$,其中 $p$ 为质数。 - 求 $\operatorname{lcm}(k^{2^{l}}+1,k^{2^{l+1}}+1,k^{2^{l+2}}+1,\dots,k^{2^{r}}+1)\bmod p$ 的值。 - $k\leq 10^6,l,r\leq 10^{18},p\leq 10^9$。 感谢 @tzc_wk 提供的翻译。

加入题单

算法标签: