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 <iostream>
using namespace std;
int main()
{
int A, B=0, C=0, D;
string s;
cin >> A;
cin >> s;
for(int i=0; i<s.length(); i++)
{
	if(s[i]=='1')
	{
		B=B+1;
	}
}
if(A*3>B||A*6<B)
{
	cout << "NIE";
}
else
{
	D=B-(A*3);
	for(int y=0; y<(D-D%3)/3; y++)
	{
		cout << "o";
		C=C+1;
	}
    if(D%3==1)
    {
        cout << "l";
        C=C+1;
	}
	if(D%3==2)
	{
	    cout << "u";
	    C=C+1;
	}
	for(int j=0; j<A-C; j++)
	{
		cout << "a";
	}
}
}