#include <bits/stdc++.h> using namespace std; int main() { char t[10]; int n,s=0,l=0,k,m; string a,b=""; cin>>n; cin>>a; for(int i='a'; i<'z'; ++i) { int x; x=i; while(x) { if(x%2==1) { ++l; } x/=2; } t[l]=(char)i; l=0; } for(int i=0; i<8*n; ++i) { if(a[i]=='1') { ++s; } } if((s<3*n) || (s>6*n)) { cout<<"NIE"; return 0; } k=s/n; m=s%n; for(int i=0; i<n; ++i) { if(m!=0) { cout<<t[k+1]; --m; } else { cout<<t[k]; } } 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 46 47 48 49 50 51 52 53 | #include <bits/stdc++.h> using namespace std; int main() { char t[10]; int n,s=0,l=0,k,m; string a,b=""; cin>>n; cin>>a; for(int i='a'; i<'z'; ++i) { int x; x=i; while(x) { if(x%2==1) { ++l; } x/=2; } t[l]=(char)i; l=0; } for(int i=0; i<8*n; ++i) { if(a[i]=='1') { ++s; } } if((s<3*n) || (s>6*n)) { cout<<"NIE"; return 0; } k=s/n; m=s%n; for(int i=0; i<n; ++i) { if(m!=0) { cout<<t[k+1]; --m; } else { cout<<t[k]; } } return 0; } |