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


int main() {
    std::ios_base::sync_with_stdio(0);
    std::cin.tie(nullptr);
    char IKSDE[4] = {'a', 'c', 'g', 'o'};
    int n;
    char l;
    int ile_jedynek{0};
    std::cin >> n;
    for(int i = 0; i < 8*n; i++){
        std::cin >> l;
        if(l == '1')
            ile_jedynek++;
    }
    switch (ile_jedynek/n) {
        case 3:
        case 4:
        case 5: 
            for(int i = 0; i < ile_jedynek % n; i++){
                std::cout << IKSDE[(ile_jedynek/n - 3) + 1];
            }
            for(int i = ile_jedynek % n; i < n; i++){
                std::cout << IKSDE[(ile_jedynek/n) - 3];
            }
            break;
        case 6: 
            if(ile_jedynek % n == 0) {
                for (int i = 0; i < n; i++) {
                    std::cout << 'o';
                }
            }
            else{
                std::cout << "NIE\n";
            }
            break;
        default:
            std::cout << "NIE\n";
    }
    return 0;
}