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
#include<iostream>
#include<string>
using namespace std;
char wypisz[10]={'0','0','0','a','c','g','w'};
int main()
{
    cin.tie(0);
    cout.tie(0);
    ios_base::sync_with_stdio(0);
    int n;
    cin>>n;
    string s;
    cin>>s;
    int jeden=0;
    for(int i=0;i<s.length();i++)
        if(s[i]=='1')
            jeden++;
    if(jeden<n*3 || jeden>n*6)
    {
        cout<<"NIE";
        return 0;
    }
    int dodatkowe=jeden-3*n;
    for(int i=0;i<n;i++)
    {
        if(dodatkowe>=3)
        {
            cout<<"w";
            dodatkowe-=3;
        }
        else if(dodatkowe>=2)
        {
            cout<<"g";
            dodatkowe-=2;
        }
        else if(dodatkowe>=1)
        {
            cout<<"c";
            dodatkowe--;
        }
        else cout<<"a";
    }
    return 0;
}