#ABC129F. Takahashi's Basics in Education and Learning
Takahashi's Basics in Education and Learning
题目描述
There is an arithmetic progression with terms: .
The initial term is , and the common difference is . That is, holds.
Consider the integer obtained by concatenating the terms written in base ten without leading zeros. For example, the sequence would be concatenated into . What is the remainder when that integer is divided by ?
有一个算术级数有 项: .
首项为 ,公差为 。也就是说, 成立。
考虑将以十进制写成的项连接起来得到的不带前导零的整数。例如,将序列 连接成 。这个整数除以 的余数是多少?
输入格式
输入内容按以下格式标准输入:
输出格式
打印连接项得到的整数除以 后的余数。
样例 #1
样例输入 #1
5 3 4 10007
样例输出 #1
5563
样例 #2
样例输入 #2
4 8 1 1000000
样例输出 #2
891011
样例 #3
样例输入 #3
107 10000000000007 1000000000000007 998244353
样例输出 #3
39122908
说明
数据规模与约定
- 所有输入值均为整数。
- 算术级数中的所有项都小于 。
样例 解释
我们的算术级数是 ,所以答案是 mod ,即 。