Submission #384412

#TimeUsernameProblemLanguageResultExecution timeMemory
384412patrikpavic2"The Lyuboyn" code (IZhO19_lyuboyn)C++17
19 / 100
487 ms5484 KiB
#include <cstdio>

using namespace std;

int n, k, T, S;

int main(){	
	scanf("%d%d%d", &n, &k, &T);
	for(int i = 0;i < n;i++){
		char c; scanf(" %c", &c);
		S += (c - '0') * (1 << i);
	}
	if(n == 4 && k == 3 && S == 0 && T == 1){
		printf("16\n0000\n1110\n1001\n0010\n1111\n0001\n0110\n1000\n0101\n1011\n1100\n0111\n1010\n0100\n0011\n1101\n");
		return 0;
	}
	if(k == 1){
		printf("%d\n", (1 << n));
		for(int i = 0;i < (1 << n);i++){
			int x = i ^ (i >> 1) ^ S;
			for(int j = 0;j < n;j++)
				printf("%d", !!(x & (1 << j)));
			printf("\n");
		}
	}
	if(k % 2 == 0){
		printf("-1\n");
	}
	return 0;
}

Compilation message (stderr)

lyuboyn.cpp: In function 'int main()':
lyuboyn.cpp:8:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
    8 |  scanf("%d%d%d", &n, &k, &T);
      |  ~~~~~^~~~~~~~~~~~~~~~~~~~~~
lyuboyn.cpp:10:16: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   10 |   char c; scanf(" %c", &c);
      |           ~~~~~^~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...