#include<bits/stdc++.h> using namespace std; int n=0; int x=0; string inp; int main(){ ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); cin>>n; cin>>inp; for(int i = 0;i<inp.size();++i){ if(inp[i]=='1'){ x += 1; } } if(n * 3 > x || n*6 < x){ cout<<"NIE"; return 0; } else if(n * 3 == x){ for(int i = 1;i<=n;++i){ cout<<'a'; } return 0; } else { int zost = x-3*n; for(int i = 1;i<=n;++i){ int dod = 3+min(3,zost); zost -= min(3,zost); if(dod==3){cout<<'a';} if(dod==4){cout<<'j';} if(dod==5){cout<<'k';} if(dod==6){cout<<'o';} } } return 0; }
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 | #include<bits/stdc++.h> using namespace std; int n=0; int x=0; string inp; int main(){ ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); cin>>n; cin>>inp; for(int i = 0;i<inp.size();++i){ if(inp[i]=='1'){ x += 1; } } if(n * 3 > x || n*6 < x){ cout<<"NIE"; return 0; } else if(n * 3 == x){ for(int i = 1;i<=n;++i){ cout<<'a'; } return 0; } else { int zost = x-3*n; for(int i = 1;i<=n;++i){ int dod = 3+min(3,zost); zost -= min(3,zost); if(dod==3){cout<<'a';} if(dod==4){cout<<'j';} if(dod==5){cout<<'k';} if(dod==6){cout<<'o';} } } return 0; } |