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

using namespace std;

int main()
{
    int n,m=2;
    int suma=0;
    int potega=0;
    int liczba=2;

    cin >> n;

    int tab[n];

    for(int i=0; i<n; i++)
    {
        cin >> tab[i];
        for(int j=1; j<tab[i]; j++)
            liczba = liczba*2;
        suma += liczba;
        liczba=2;
    }

    //  cout << suma << endl;

    while(m<=suma)
    {
        m=m*2;
        potega++;
    }

    cout << potega;

    return 0;
}