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
#include <bits/stdc++.h>
using namespace std;
int n, t;
char c;

char l(int a) {
  if (a == 0) {
    return 'a';
  }
  if (a == 1) {
    return 'c';
  }
  if (a == 2) {
    return 'g';
  }
  return 'o';
}

int main()
{
  ios_base::sync_with_stdio(0);

  cin >> n;
  int j = 0;
  for(int i = 0; i < 8 * n; i++) {
    cin >> c;
    j += c - '0';
  }

  if (j < 3 * n || j > 6 * n) {
    cout << "NIE" << endl;
  } else {
    j -= 3 * n;
    for (int i = 0; i < n; i++) {
      if (j > 3) {
        j -= 3;
        cout << l(3);
      } else {
        cout << l(j);
        j = 0;
      }
    }
    cout << endl;
  }

  return 0;
}