#include <bits/stdc++.h> using namespace std; int znaki1[4]; int main() { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); char z; int n, ile_0=0, ile_1=0, pom, pom2; cin>>n; for(int i=0; i<n; i++) { ile_0=0; ile_1=0; for(int i=0; i<8 ; i++) { cin>>z; if(z=='1') { ile_1++; } else { ile_0++; } } if(ile_1==3) znaki1[0]++; if(ile_1==4) znaki1[1]++; if(ile_1==5) znaki1[2]++; if(ile_1==6) znaki1[3]++; } for(int i=0; i<4; i++) { for(int j=0; j<znaki1[i]; j++) { if( i==0) cout<<"a"; if(i==1) cout<<"c"; if(i==2) cout<<"g"; if(i==3) cout<<"o"; } } cout<<endl; 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 | #include <bits/stdc++.h> using namespace std; int znaki1[4]; int main() { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); char z; int n, ile_0=0, ile_1=0, pom, pom2; cin>>n; for(int i=0; i<n; i++) { ile_0=0; ile_1=0; for(int i=0; i<8 ; i++) { cin>>z; if(z=='1') { ile_1++; } else { ile_0++; } } if(ile_1==3) znaki1[0]++; if(ile_1==4) znaki1[1]++; if(ile_1==5) znaki1[2]++; if(ile_1==6) znaki1[3]++; } for(int i=0; i<4; i++) { for(int j=0; j<znaki1[i]; j++) { if( i==0) cout<<"a"; if(i==1) cout<<"c"; if(i==2) cout<<"g"; if(i==3) cout<<"o"; } } cout<<endl; return 0; } |