CF1422C.Bargain

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

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 nn , 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 12131211213121 , Vova can remove the substring 13121312 , and the result is 121121 .

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

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 109+710^9 + 7 .

输入格式

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

输出格式

In the only line print the required sum modulo 109+710^9 + 7 .

输入输出样例

  • 输入#1

    107

    输出#1

    42
  • 输入#2

    100500100500

    输出#2

    428101984

说明/提示

Consider the first example.

Vova can choose to remove 11 , 00 , 77 , 1010 , 0707 , or 107107 . The results are 0707 , 1717 , 1010 , 77 , 11 , 00 . Their sum is 4242 .

首页