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
#include <iostream>
#include <vector>
#include <algorithm>
#define ll long long

using namespace std;

string litery = "zacno";

int main() {
	
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);
	
	ll n, jedynki;
	string input;
	
	cin >> n >> input;
	jedynki = count(input.begin(), input.end(), '1');
	
	// początkowe 3 bity - zawsze 011
	jedynki -= 2*n;
	
	double srednio = jedynki / n;
	
	if (srednio < 1.0 || srednio > 4.0) {
		cout << "NIE";
		return 0;
	}
	
	ll podst = srednio;
	ll ileInnych = jedynki % n;
	
	for (ll i = 0; i < ileInnych; i++) {
		cout << litery[podst+1];
	}
	for (ll i = 0; i < (n-ileInnych); i++) {
		cout << litery[podst];
	}
	
	return 0;
}