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

using namespace std;
int n,y;
long long x,p,l,t;
string s;
string c;
int main()
{
    cin>>n;
    cin>>s;
    if(n<2)
    {
        cout<<0;
        return 0;
    }
    else
    {
    for(int i=0; i<n-1; i++)
    {
        cin>>c;
        if(c.size()>s.size())
        {
            s=c;
        }
        else
            if(c.size()==s.size())
        {
            for(int j=0;j<s.size();j++)
            {
                if(s[j]!=c[j])
                {
                    if((int)s[j]>(int)c[j])
                    {
                        c=c+'0';
                        x++;
                    }
                }
                else
                {
                    x++;
                }
            }
        }
        else
            if(c.size()<s.size())
        {
            p=c.size();
            l=s.size();
            y=s.size()-c.size();
            for(int j=0;j<y;j++)
            {
                c=c+"0";
                x++;
            }
             for(int j=0; j<s.size(); j++)
            {
                if(j==s.size()-1)
                {
                if(s[j]==c[j])
                {
                  c+='0';
                }
                }
                if(s[j]!=c[j])
                {
                    if((int)s[j]>(int)c[j])
                    {
                        c=c+'0';
                        x++;
                    }
                    else
                        break;
                }
                else
                {
                    x++;
                }
            }
        }
        s=c;
    }

    cout<<x;
    }


    return 0;
}