E - Sequence Sum Editorial /

Time Limit: 2 sec / Memory Limit: 1024 MB

配点 : 500500

問題文

xxmm で割った余りを f(x,m)f(x,m) と表します。

初期値 A1=XA_1=X および漸化式 An+1=f(An2,M)A_{n+1}= f(A_n^2, M) で定まる数列を AA とします。i=1NAi\displaystyle{\sum_{i=1}^N A_i} を求めてください。

制約

  • 1N10101 \leq N \leq 10^{10}
  • 0X<M1050 \leq X < M \leq 10^5
  • 入力は全て整数

入力

入力は以下の形式で標準入力から与えられる。

NN XX MM

出力

i=1NAi\displaystyle{\sum_{i=1}^N A_i} を出力せよ。


入力例 1Copy

Copy
6 2 1001

出力例 1Copy

Copy
1369

数列 AA2,4,16,256,471,620,2,4,16,256,471,620,\ldots となるので、答えは 2+4+16+256+471+620=13692+4+16+256+471+620=1369 となります。


入力例 2Copy

Copy
1000 2 16

出力例 2Copy

Copy
6

数列 AA2,4,0,0,2,4,0,0,\ldots となるので、答えは 66 となります。


入力例 3Copy

Copy
10000000000 10 99959

出力例 3Copy

Copy
492443256176507

Score : 500500 points

Problem Statement

Let us denote by f(x,m)f(x, m) the remainder of the Euclidean division of xx by mm.

Let AA be the sequence that is defined by the initial value A1=XA_1=X and the recurrence relation An+1=f(An2,M)A_{n+1} = f(A_n^2, M). Find i=1NAi\displaystyle{\sum_{i=1}^N A_i}.

Constraints

  • 1N10101 \leq N \leq 10^{10}
  • 0X<M1050 \leq X < M \leq 10^5
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

NN XX MM

Output

Print i=1NAi\displaystyle{\sum_{i=1}^N A_i}.


Sample Input 1Copy

Copy
6 2 1001

Sample Output 1Copy

Copy
1369

The sequence AA begins 2,4,16,256,471,620,2,4,16,256,471,620,\ldots Therefore, the answer is 2+4+16+256+471+620=13692+4+16+256+471+620=1369.


Sample Input 2Copy

Copy
1000 2 16

Sample Output 2Copy

Copy
6

The sequence AA begins 2,4,0,0,2,4,0,0,\ldots Therefore, the answer is 66.


Sample Input 3Copy

Copy
10000000000 10 99959

Sample Output 3Copy

Copy
492443256176507


2025-04-03 (Thu)
11:39:53 +00:00