1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
#include <iostream>
#include <cmath>
using namespace std;
int Cyfry(int x)
{
    return (int)log10(x)+1;
}
int testowanie(int x, int y, int indeks)
{
    int pom;
    int test=0;
    if(Cyfry(y)>=Cyfry(x))
    {
        pom=Cyfry(y)-Cyfry(x);
        for(int i=0; i<pom; ++i)
        {
            if(y%10==9 && test!=2) test=1;
            else test=2;
            y=y/10;
        }
    }
    else
    {
        pom=Cyfry(x)-Cyfry(y);
        for(int i=0; i<pom; ++i)
        {
            if(x%10==9 && test!=2) test=1;
            else test=2;
            x=x/10;
        }
    }
    if(test==1 && x<=y) return 0;
    else
    {
        if(x>y) return 1;
        else if(x==y) return 2;
        else return 0;
    }
}
int main()
{
    cin.tie(0);
    cout.tie(0);
    ios_base::sync_with_stdio(0);
    int n, test;
    cin >> n;
    long long w=0;
    int x;
    int a[n];
    int pom[n];
    for(int i=0; i<n; ++i)
    {
        cin >>x;
        a[i]=x;
        pom[i]=Cyfry(x);
    }
    int p=a[0]%10+1;
    if(Cyfry(a[0])==1) p=1;
    for(int i=1; i<n; ++i)
    {
        test=0;
        if(pom[i-1]>=pom[i])
        {
            //cout << testowanie(a[i], a[i-1], i) << " " << pom[i] << " " << pom[i-1] << " " << p << endl;
            if(testowanie(a[i], a[i-1], i)==0)
            {
                w=w+pom[i-1]-pom[i]+1;
                pom[i]=pom[i-1]+1;
                p=1;
            }
            else if(testowanie(a[i], a[i-1], i)==1)
            {
                w=w+pom[i-1]-pom[i];
                pom[i]=pom[i-1];
                p=1;
            }
            else if(testowanie(a[i], a[i-1], i)==2)
            {
                if(pom[i]==pom[i-1] && a[i]==a[i-1])
                {
                    pom[i]++;
                    w++;
                    p=0;
                    test=1;
                }
                if(test==0)
                {
                    w=w+pom[i-1]-pom[i];
                    pom[i]=pom[i-1];
                }
                if(p+1>pow(10, pom[i-1]-1))
                {
                    pom[i]++;
                    w++;
                    p=0;
                }
                p++;
            }
        }
        else
        {
            if(Cyfry(a[i])==1) p=1;
            else p=a[i]%10+1;
        }
        //cout << i << " " << a[i] << " " << pom[i] << " " << a[i-1] << " " << pom[i-1] << " " << p << " " << w << endl;
    }
    cout << w << endl;
    return 0;
}