# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
146196 | 2019-08-22T19:38:11 Z | imeimi2000 | "The Lyuboyn" code (IZhO19_lyuboyn) | C++17 | 381 ms | 5492 KB |
#include <iostream> #include <algorithm> #include <vector> using namespace std; char _S[20]; int B[1 << 18]; int main() { ios_base::sync_with_stdio(0); cin.tie(0); int n, k, t; cin >> n >> k >> t >> _S; if (k + 1 & 1) { printf("-1\n"); return 0; } int S = 0; for (int i = 0; i < n; ++i) S = S << 1 | _S[i] - '0'; for (int i = 0; i <= k; ++i) B[1 << i] = (1 << k + 1) - (1 << i) - 1; for (int i = k + 1; i < n; ++i) B[1 << i] = (1 << k - 1) + (1 << i); printf("%d\n", 1 << n); for (int i = 0; i < (1 << n); ++i) { S ^= B[i & -i]; for (int j = n; j--; ) printf("%d", (S >> j) & 1); printf("\n"); } return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 376 KB | Ok |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 376 KB | Ok |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 376 KB | Ok |
2 | Correct | 2 ms | 376 KB | Ok |
3 | Correct | 2 ms | 376 KB | Ok |
4 | Correct | 2 ms | 376 KB | Ok |
5 | Correct | 2 ms | 376 KB | Ok |
6 | Correct | 2 ms | 376 KB | Ok |
7 | Correct | 2 ms | 376 KB | Ok |
8 | Correct | 2 ms | 376 KB | Ok |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 381 ms | 5420 KB | Fail, not exactly k bits are different: line = 3 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 376 KB | Fail, not exactly k bits are different: line = 15 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 381 ms | 5492 KB | Fail, not exactly k bits are different: line = 255 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 381 ms | 5420 KB | Fail, not exactly k bits are different: line = 3 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 201 ms | 2760 KB | Fail, not exactly k bits are different: line = 65535 |
2 | Halted | 0 ms | 0 KB | - |