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
45
46
47
48
49
50
51
52
53
54
//Ada Kolodziejczak
//Zadanie zaklocenia
#include<bits/stdc++.h>
using namespace std;
int n, jed, ze, roz;
string s;

int main()
{
    ios_base::sync_with_stdio(0);
    cin>>n>>s;

    for(int i=0; i<8*n; ++i)
    {
        if(s[i]=='1') ++jed;
    }

    ze=8*n-jed;

    if(6*n<jed||5*n<ze)
    {
        cout<<"NIE";
        return 0;
    } 

    while(ze>jed)
    {
        ze-=5;
        jed-=3;
        cout<<'d';
    }
    
    while (jed-4>=ze&&jed>=6)
    {
        ze-=2;
        jed-=6;
        cout<<'o';
    }

    while (jed-2>=ze)
    {
        ze-=3;
        jed-=5;
        cout<<'n';
    }

    while (ze>0&&jed>0)
    {
        ze-=4;
        jed-=4;
        cout<<'j';
    }
       
}