#include <iostream> #include <algorithm> #include <vector> using namespace std; int main() { int n; cin >> n; string str; cin >> str; int count {}; for (int i=0; i<n*8; i++) { if (str[i] == '1') { count++; } } if (count < 3*n || count > 6*n) { cout << "NIE" << endl; return 0; } count -= 3*n; for (int i=0; i<n; i++) { if (count >= 3) { cout << "o"; count -= 3; } else if (count == 2) { cout << "g"; count -= 2; } else if (count == 1) { cout << "c"; count--; } else { cout << "a"; } } 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 | #include <iostream> #include <algorithm> #include <vector> using namespace std; int main() { int n; cin >> n; string str; cin >> str; int count {}; for (int i=0; i<n*8; i++) { if (str[i] == '1') { count++; } } if (count < 3*n || count > 6*n) { cout << "NIE" << endl; return 0; } count -= 3*n; for (int i=0; i<n; i++) { if (count >= 3) { cout << "o"; count -= 3; } else if (count == 2) { cout << "g"; count -= 2; } else if (count == 1) { cout << "c"; count--; } else { cout << "a"; } } cout << endl; return 0; } |