当前你的浏览器版本过低,网站已在兼容模式下运行,兼容模式仅提供最小功能支持,网站样式可能显示不正常。
请尽快升级浏览器以体验网站在线编辑、在线运行等功能。

建议使用的浏览器:

谷歌Chrome 火狐Firefox Opera浏览器 微软Edge浏览器 QQ浏览器 360浏览器 傲游浏览器

5848:Easy Homework

题目描述
Let’s consider a sequence $\{f(n)\}$ which satisfies following 2 conditions.

1.$f(0) = 0, f(1) = 1$.
2.$f(n)=Af(n-1)+f(n-2)$,for any integer $n > 1$.
Here A is a constant integer.

Given a prime $p$ and an integer $x(0\leq x\leq p)$ , your task is to calculate $|\{n|L\leq n\leq R,f(n)\ mod\ p = x\}|$ , i.e. the number of indices $n$ between $L$ and $R$ such as $f(n)\ mod\ p = x$ .
输入解释
There are several test cases.

The first line of the input contains an integer $T(1\leq T\leq 120)$ , the number of test cases.

Each of the next $T$ lines contains 5 integers, $A,p,x,L,R(0\leq A < 10^9,2<p<10^9,0\leq x < p,1\leq L\leq R \leq 10^{18})$
输出解释
Print $T$ lines, containing the answer to the problem.
输入样例
2
1 5 0 1 5
2 29 12 3 6
输出样例
1
2
来自杭电HDUOJ的附加信息
Author 金策工业综合大学(DPRK)
Recommend wange2014

该题目是Virtual Judge题目,来自 杭电HDUOJ

源链接: HDU-5848

最后修改于 2020-10-25T23:26:09+00:00 由爬虫自动更新

共提交 0

通过率 --%
时间上限 内存上限
2000/1000MS(Java/Others) 65536/65536K(Java/Others)