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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
#include <iostream>
#include <vector>
#include <string>


using namespace std;

unsigned long long int ret = 0;

int countsame(const string& a, const string& b){
  for(int i = 0; i < min(a.size(), b.size()); i ++){
    if(a[i] != b[i]) return i;
  }
  return min(a.size(), b.size());
}

int isprefixgreater(const string& a, const string& b){
  for(int i = 0; i < min(a.size(), b.size()); i ++){
    if(a[i] < b[i])
      return false;
    if(a[i] > b[i])
      return true;
  }
  return false;
}

bool greaterr(int b, const string& a){

  if(a.size() > 9){
    return false;
  }
  return b > stoi(a);

}

bool canincrease (const string & in){
  for (const auto& a : in){
    if(a != '9'){
      return true;
    }
  }
  return false;
}

void increase(string& in){
  for(int i = in.size() - 1; i >= 0; i--){
    if(in[i] != '9'){
      in[i] ++;
      return;
    } else {
      in[i] = '0';
    }
  }
  return;
}

void next(string& a, int b){
  string bstr = to_string(b);
  if(greaterr(b, a)){
    a = bstr;
    return;
  }

  if(a.size() > 50){
    if(isprefixgreater(bstr, a)){
      ret += a.size() - bstr.size();
      for(int i = 0; i < 30; i++){
        if(i < bstr.size()){
          a[i] = bstr[i];
        } else {
          a[i] = '0';
        }
      }
      return;
    }
    if (countsame(bstr, a) == bstr.size()){
      ret += a.size() - bstr.size();
      for(int i = 0; i < 30; i++){
        if(i < bstr.size()){
          a[i] = bstr[i];
        } else {
          a[i] = '0';
        }
      }
      return;
    } 
    for(int i = 0; i < 30; i++){
      if(i < bstr.size()){
        a[i] = bstr[i];
      } else {
        a[i] = '0';
      }
    }
    a += '0';
    ret += a.size() - bstr.size();
    return;
  } 

  if(isprefixgreater(bstr, a)){
    string newsufix (a.size() - bstr.size(), '0');
    ret += newsufix.size();
    a = bstr + newsufix;
    return;
  } else if (countsame(bstr, a) == bstr.size()) {
    string sufix = a.substr(bstr.size(), a.size() - bstr.size() + 1);
    if(sufix.size() != 0 and canincrease(sufix)){
      increase(sufix);
      ret += sufix.size();
      a = bstr + sufix; 
      return;
    }
  }
  string newsufix (a.size() - bstr.size() + 1, '0');
  ret += newsufix.size();
  a = bstr + newsufix;
  return;

}

int main(){
  int n;
  cin >> n;
  vector<int> numbs(n, 0);
  for(int i = 0; i < n; i++){

    cin >> numbs[i];

  }
  string last = to_string(numbs[0]);
  for(int i = 0; i + 1 < n; i++){
    next(last, numbs[i + 1]);
  }

  cout << ret << endl;
}