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
#include<iostream>
#include<string>
#include<algorithm>
using namespace std;

int main() {
    ios_base::sync_with_stdio(0);
    cin.tie(0);

    int n, zeros = 0;
    cin >> n;

    string str;
    cin >> str;

    for (int i = 0; i < str.size(); i++) {
        if (str[i] == '0') {
            zeros += 1;
        }
    }
    if (zeros > 5 * n || zeros < 2 * n) {
        cout << "NIE";
    }
    else {
        while (n > 0) {
            n -= 1;
            if (n == 0) {
                if (zeros == 5) {
                    cout << "a";
                    continue;
                }
                if (zeros == 4) {
                    cout << "c";
                    continue;
                }
                if (zeros == 3) {
                    cout << "g";
                    continue;
                }
                if (zeros == 2) {
                    cout << "o";
                    continue;
                }
            }
            else {
                if (zeros - 5 <= 5 * n && zeros - 5 >= 2 * n) {
                    zeros -= 5;
                    cout << "a";
                    continue;
                }
                if (zeros - 4 <= 5 * n && zeros - 4 >= 2 * n) {
                    zeros -= 4;
                    cout << "c";
                    continue;
                }
                if (zeros - 3 <= 5 * n && zeros - 3 >= 2 * n) {
                    zeros -= 3;
                    cout << "g";
                    continue;
                }
                if (zeros - 2 <= 5 * n && zeros - 2 >= 2 * n) {
                    zeros -= 2;
                    cout << "o";
                    continue;
                }
            }
        }
    }

    return 0;
}