#include <stdio.h> #include <string.h> char text[1000000]; char remt[] = "acg"; int main(void) { int n; int cnt = 0; int q, r; int i; scanf("%d%s", &n, text); for (i = 0; i < n * 8; i++) cnt += (text[i] == '1'); if (cnt < 3 * n || cnt > 6 * n) { printf("NIE\n"); return 0; } q = (cnt - 3 * n) / 3; r = (cnt - 3 * n) % 3; memset(text, 'o', q); if (q < n) { text[q] = remt[r]; memset(text + q + 1, 'a', n - q - 1); } text[n] = 0; printf("%s\n", text); 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 | #include <stdio.h> #include <string.h> char text[1000000]; char remt[] = "acg"; int main(void) { int n; int cnt = 0; int q, r; int i; scanf("%d%s", &n, text); for (i = 0; i < n * 8; i++) cnt += (text[i] == '1'); if (cnt < 3 * n || cnt > 6 * n) { printf("NIE\n"); return 0; } q = (cnt - 3 * n) / 3; r = (cnt - 3 * n) % 3; memset(text, 'o', q); if (q < n) { text[q] = remt[r]; memset(text + q + 1, 'a', n - q - 1); } text[n] = 0; printf("%s\n", text); return 0; } |