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
110
111
112
113
#include<iostream>
#include<algorithm>
#include<cmath>

using namespace std;

int n;
int a;
int stara;
int nowa;
int zer;


int cyfr(int liczba){
    if(liczba==0){
        return(1);
    }
    int power=0;
    while(pow(10, power)<=liczba){
        power++;
    }
    return(power);
}


int klej(int a, int b, int cyfrb){
    a=a*pow(10, cyfrb);
    return(a+b);
}

int oc(int liczba, int ile){
    int odejm=liczba/pow(10, ile);
    //cout<<"odejm:"<<odejm<<"\n";//DEBUG
    odejm*=pow(10, ile);
    return(liczba-odejm);
}


int main(){
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
    
    stara=0;
    
    cin>>n;
    for(int i=0;i<n;i++){
        cin>>a;
        if(a>stara){
            stara=a;
            //cout<<a<<"a ";
        }else{
            nowa=klej(a, oc(stara, cyfr(stara)-cyfr(a)), cyfr(stara)-cyfr(a));
            //nowa++;
            //cout<<"("<<nowa<<") ";
            if(nowa<=stara){
                //cout<<"zera\n"<<cyfr(stara)<<" "<<cyfr(a)<<"\n";//DEBUG
                nowa=klej(a, 0, cyfr(stara)-cyfr(a)+1);
            }
            //cout<<nowa<<"b ";//DEBUG
            zer+=cyfr(nowa)-cyfr(a);
            
            stara=nowa;
        }
    }
    
    cout<<zer<<"\n";
    
    
  return(0);
}
































/*int cyfr(int liczba){
    if(liczba==0){
        return(1);
    }
    int power=0;
    while(pow(10, power)<=liczba){
        power++;
    }
    return(power);
}*/