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
#include <iostream>
#include <string>

int main() {
	int n;
	std::cin >> n;
	long long* a = new long long[n];
	for (int i = 0; i < n; i++)
		std::cin >> a[i];
	unsigned changes = 0;
	for (int i = 1; i < n; i++) {
		if (a[i-1] >= a[i]) {
			int mult = 1;
			while (a[i] * mult + mult - 1 <= a[i - 1]) { //jeśli wciąż jest mniejszy lub równy to dopisujemy liczbę
				mult *= 10;
				changes++;
			}
			a[i] = a[i] * mult; //dopisane zer do liczby
			if (a[i] <= a[i - 1])
				a[i] += a[i - 1] - a[i] + 1;
		}
	}
	std::cout << changes << std::endl;
	return 0;
}