Problem C. Bargain

时间限制 1 ms   内存限制 256 MB

Sometimes it is not easy to come to an agreement in a bargain. Right now Sasha and Vova can't come to an agreement: Sasha names a price as high as possible, then Vova wants to remove as many digits from the price as possible. In more details, Sasha names some integer price $$$n$$$, Vova removes a non-empty substring of (consecutive) digits from the price, the remaining digits close the gap, and the resulting integer is the price.

For example, is Sasha names $$$1213121$$$, Vova can remove the substring $$$1312$$$, and the result is $$$121$$$.

It is allowed for result to contain leading zeros. If Vova removes all digits, the price is considered to be $$$0$$$.

Sasha wants to come up with some constraints so that Vova can't just remove all digits, but he needs some arguments supporting the constraints. To start with, he wants to compute the sum of all possible resulting prices after Vova's move.

Help Sasha to compute this sum. Since the answer can be very large, print it modulo $$$10^9 + 7$$$.

输入数据

The first and only line contains a single integer $$$n$$$ ($$$1 \le n < 10^{10^5}$$$).

输出数据

In the only line print the required sum modulo $$$10^9 + 7$$$.

样例

样例说明

Consider the first example.

Vova can choose to remove $$$1$$$, $$$0$$$, $$$7$$$, $$$10$$$, $$$07$$$, or $$$107$$$. The results are $$$07$$$, $$$17$$$, $$$10$$$, $$$7$$$, $$$1$$$, $$$0$$$. Their sum is $$$42$$$.

提交

请先 登录

© 2025 FAQs Contact About