题库练习 Linear Congruential Generator
← 上一题 下一题 →

A12029 | Linear Congruential Generator

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

You are given a tuple generator $f^{(k)} = (f_1^{(k)}, f_2^{(k)}, \dots, f_n^{(k)})$ , where $f_i^{(k)} = (a_i \cdot f_i^{(k - 1)} + b_i) \bmod p_i$ and $f^{(0)} = (x_1, x_2, \dots, x_n)$ . Here $x \bmod y$ denotes the remainder of $x$ when divided by $y$ . All $p_i$ are primes.

One can see that with fixed sequences $x_i$ , $y_i$ , $a_i$ the tuples $f^{(k)}$ starting from some index will repeat tuples with smaller indices. Calculate the maximum number of different tuples (from all $f^{(k)}$ for $k \ge 0$ ) that can be produced by this generator, if $x_i$ , $a_i$ , $b_i$ are integers in the range $[0, p_i - 1]$ and can be chosen arbitrary. The answer can be large, so print the remainder it gives when divided by $10^9 + 7$

输入格式

The first line contains one integer $n$ ( $1 \le n \le 2 \cdot 10^5$ ) — the number of elements in the tuple.

The second line contains $n$ space separated prime numbers — the modules $p_1, p_2, \ldots, p_n$ ( $2 \le p_i \le 2 \cdot 10^6$ ).

输出格式

Print one integer — the maximum number of different tuples modulo $10^9 + 7$ .

输入输出样例

输入 #1
4
2 3 5 7
输出 #1
210
输入 #2
3
5 3 3
输出 #2
30
C++ 编辑器
输入
输出