#ABC152E. Comparing Strings
Comparing Strings
题目描述
Given are positive integers .
Consider positive integers that satisfy the following condition.
Condition: For any such that , holds.
Find the minimum possible value of for such .
Since the answer can be enormous, print the sum mod ().
已知有 个正整数 。
考虑满足以下条件的正整数 .
条件:对于任意 , , 成立。
求这样的 的 的最小可能值。
由于答案可能很大,请打印模乘和 ( )。
输入格式
输入内容按以下格式标准输入:
输出格式
打印满足条件的 中 的最小值,模数为 ( )。
样例 #1
样例输入 #1
3
2 3 4
样例输出 #1
13
样例 #2
样例输入 #2
5
12 12 12 12 12
样例输出 #2
5
样例 #3
样例输入 #3
3
1000000 999999 999998
样例输出 #3
996989508
说明
数据规模与约定
- 所有输入值均为整数。
样例 解释
让 、 和 ,即可满足条件。
样例 解释
我们可以让所有 都成为 。
样例 解释
打印取模 的和。