#P65. [KBC Appendix] Sequence 3+

[KBC Appendix] Sequence 3+

Source

The easy version of this problem is adapted from Long Long OJ. All rights reserved.

Attention

is the easy version of this problem.

Problem Description

Given a sequence aa of nn integers, you need to add digits at the end of the integers in order to make the sequence strictly increasing.

Adding digit t (0t9)t\ (0\le t\le 9) at the end of a number xx can be represented as xx×10+tx\leftarrow x\times10+t.

Find the minimum number of digits to be added.

Input Format

The first line consists of an integer nn.

The following nn lines consists of nn integers a1,a2,,ana_1, a_2, \ldots, a_n.

Output Format

Output the minimum number of digits to be added.

Samples

4
20
1
45
132
4

Sample Explanation

After adding digits, the sequence becomes a=[20,199,459,1329]a=[20,199,459,1329].

Note that this is not the only possible solution.

Data Range

对于 50%50\% of the test cases, n15n \le 15.

对于 100%100\% of the test cases, 1n1061 \le n \le 10^6, 1ai1091 \le a_i \le 10^9.