跳到主要内容
图灵 OJTURING / ONLINE JUDGE

#F2829. Visit of the Great

    ID: 2835 传统题 2000ms 256MiB 尝试: 0 已通过: 0 难度: 9 上传者: 标签>数学数论挑战难度共享题库Codeforces英文题面题目来源题面语言

Visit of the Great

题目描述

D. Visit of the Great
time limit per test
3 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

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(k2l+1,k2l+1+1,...,k2r+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 ki, li, ri, chosen by the Great Mushroom King for this visit. They also know a prime number pi. Help them to count the remainder of dividing the number of dwarves who can see the King, by number pi, for each visit.

Input

The first line contains the single integer t (1≤t≤105) − the number of the King's visits.

Each of the following t input lines contains four space-separated integers ki, li, ri and pi (1≤ki≤106;0≤liri≤1018;2≤pi≤109) − the numbers, chosen by the Great Mushroom King and the prime module, correspondingly.

It is guaranteed that for all visits number pi is prime.

Please do not use the %lld specifier to read or write 64-bit integers in C++. It is preferred to use the cin, cout streams or the %I64d specifier.

Output

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 pi. Print the answers for the visits in the order, in which the visits are described in the input.

Examples
Input
2
3 1 10 2
5 0 4 3
Output
0
0
Note

We consider that LCM(a1,a2,...,an) represents the least common multiple of numbers a1, a2, ..., an.

We consider that x0=1, for any x.


题目来源:fps-www.educg.net-codeforce-1-2833.xml.zip;FPS 共享题包,题包内第 2500 题。保留原作者与原赛事署名。