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
136
137
138
139
140
141
142
143
144
/*
    Piotr Bieńkowski
    bbienkos@gmail.com
    Akademickie Liceum Ogólnokształcące Politechniki Wrocławskiej
*/

#include<bits/stdc++.h>
using namespace std;

#define ll long long
#define pb push_back
#define pii pair<int, int>
#define debug(x); cerr << #x << " = " << x << "\n";
#define sz(x) (int)(x).size()
#define all(x) (x).begin(), (x).end()

int n;

int main()
{
    ios_base::sync_with_stdio(0);
    cin.tie(0); cout.tie(0);
    cin >> n;
    int c1 = 0;
    int c0 = 0;
    string wej = "";
    for(int i = 0; i < 8 * n; i++)
    {
        char a;
        cin >> a;
        wej += a;
        if (a ==  '1') c1++;
        else c0++;
    }
    bool udalosie = true;
    int a = 0, c = 0, g = 0, o = 0;
    for(int i = 0; i < n; i++)
    {
        int tmp1 = 0;
        int tmp0 = 0;
        for(int j = 0; j < 8; j++)
        {
            if(wej[i * 8 + j] == '1') tmp1++;
            else tmp0++;
        }
        bool error = true;
        if(tmp1 == 3) 
        {
            a++;
            error = false;
        }
        if(tmp1 == 4)
        {
            c++;
            error = false;
        }
        if(tmp1 == 5) 
        {
            g++;
            error = false;
        }
        if(tmp1 == 6) 
        {
            o++;
            error = false;
        }
        if(error)
            udalosie = false;
    }

    if(udalosie)
    {
        string A = "";

        for(int i = 0; i < a; i++) A += 'a';
        for(int i = 0; i < c; i++) A += 'c';
        for(int i = 0; i < g; i++) A += 'g';
        for(int i = 0; i < o; i++) A += 'o';

        cout << A << "\n";
        return 0;
    }

    int limit = 1e3;
    a = 0, c = 0, g = 0, o = 0;
    int tempA1 = 0, tempC1 = 0, tempG1 = 0, tempO1 = 0;
    int tempA0 = 0, tempC0 = 0, tempG0 = 0, tempO0 = 0;
    for(a = 0; a < limit; a++)
    {
        tempA1 = a * 3;
        tempA0 = a * 5;
        if (tempA1 > c1 || tempA0 > c0)
            break;
        if(tempA1 + tempC1 + tempG1 + tempO1 == c1 && tempA0 + tempC0 + tempG0 + tempO0 == c0)
        {
            goto ans;
        }
        for(c = 0; c < limit; c++)
        {
            tempC1 = c * 4;
            tempC0 = c * 4;
            if (tempC1 + tempA1 > c1 || tempA0 + tempC0 > c0)
                break;
            if(tempA1 + tempC1 + tempG1 + tempO1 == c1 && tempA0 + tempC0 + tempG0 + tempO0 == c0)
            {
                goto ans;
            }
            for(g = 0; g < limit; g++)
            {
                tempG1 = g * 5;
                tempG0 = g * 3;
                if (tempG1 + tempC1 + tempA1 > c1 || tempG0 + tempA0 + tempC0 > c0)
                    break;
                if(tempA1 + tempC1 + tempG1 + tempO1 == c1 && tempA0 + tempC0 + tempG0 + tempO0 == c0)
                {
                    goto ans;
                }
                for(o = 0; o < limit; o++)
                {
                    tempO1 = o * 6;
                    tempO0 = o * 2;
                    if (tempO1 + tempG1 + tempC1 + tempA1 > c1 || tempO0 + tempG0 + tempA0 + tempC0 > c0)
                        break;
                    if(tempA1 + tempC1 + tempG1 + tempO1 == c1 && tempA0 + tempC0 + tempG0 + tempO0 == c0)
                    {
                        goto ans;
                    }
                }
            }
        }
    }
    if(false)
    {
        ans: 
        string A = "";
        for(int i = 0; i < a; i++) A += 'a';
        for(int i = 0; i < c; i++) A += 'c';
        for(int i = 0; i < g; i++) A += 'g';
        for(int i = 0; i < o; i++) A += 'o';

        cout << A << "\n";
    }
    else cout << "NIE\n";
}