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
#include <bits/stdc++.h>

int main() {
	std::ios_base::sync_with_stdio(false);
	std::cin.tie(nullptr);
	std::cout.tie(nullptr);

	int n;
	std::cin >> n;
	std::string s;
	std::cin >> s;

	int cnt = 0;
	for (auto c : s) cnt += (c == '1');

	//            3    4    5    6
	char arr[] {'a', 'c', 'g', 'o'};

	if (cnt < 3 * n || cnt > 6 * n) {
		std::cout << "NIE\n";
		return 0;
	}

	cnt -= 3 * n;
	for (int i = 0; i < n; i++) {
		int j = std::min(3, cnt);
		cnt -= j;
		std::cout << arr[j];
	}

	std::cout << '\n';

	return 0;
}