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
#include<bits/stdc++.h>
#define p printf
using namespace std;
int main()
{
int n,i,x;
char c;
scanf("%d",&n);
x=0;
for(i=0;i<n*8;i++)
{
scanf(" %c",&c);x+=(c=='1');
}
if(x<n*3 || n*6<x)
{
p("NIE\n");
return 0;
}x-=3*n;
for(i=0;i<n;i++)
{if(x>=3){
p("o");
x-=3;
}
else if(x==2)
{p("g");
x-=2;
}
else if(x==1){
p("c");
x-=1;
}
else{
p("a");
}
}
p("\n");
}