#include <iostream> using namespace std; int main() { ios_base::sync_with_stdio(0); int n; cin >> n; long long ile = 0; unsigned long long a[n]; for(int i = 0; i<n; i++) cin >> a[i]; for(int i = 1; i<n; i++) { while(a[i]<a[i-1]) { a[i] *= 10; ile++; } } cout << ile << endl; return 0; }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | #include <iostream> using namespace std; int main() { ios_base::sync_with_stdio(0); int n; cin >> n; long long ile = 0; unsigned long long a[n]; for(int i = 0; i<n; i++) cin >> a[i]; for(int i = 1; i<n; i++) { while(a[i]<a[i-1]) { a[i] *= 10; ile++; } } cout << ile << endl; return 0; } |