# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
370414 | 2021-02-24T02:30:54 Z | daniel920712 | "The Lyuboyn" code (IZhO19_lyuboyn) | C++14 | 256 ms | 7008 KB |
#include <iostream> #include <stdio.h> #include <stdlib.h> #include <vector> #include <stack> using namespace std; stack < int > t; vector < int > all; char tt[100005]; int N,K,T,S; void F(int here) { int i,j; if(here==0) { all.push_back(0); all.push_back(1); } else if(here==N) { printf("%d\n",1<<N); for(auto i:all) { for(j=N-1;j>=0;j--) { if(i&(1<<j)) printf("1"); else printf("0"); } printf("\n"); } return; } else { for(auto i:all) t.push(i+(1<<here)); while(!t.empty()) { all.push_back(t.top()); t.pop(); } } F(here+1); } int main() { scanf("%d %d %d",&N,&K,&T); scanf("%s",tt); if(K%2==0) printf("NO\n"); else if(K==1) F(0); else { ; } return 0; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 364 KB | First number in answer is not x 1 0 |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 364 KB | Unexpected end of file - int32 expected |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 364 KB | Expected integer, but "NO" found |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 256 ms | 7008 KB | Ok |
2 | Correct | 106 ms | 3428 KB | Ok |
3 | Correct | 1 ms | 384 KB | Ok |
4 | Correct | 1 ms | 364 KB | Ok |
5 | Correct | 1 ms | 364 KB | Ok |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 364 KB | Unexpected end of file - int32 expected |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 364 KB | Unexpected end of file - int32 expected |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 256 ms | 7008 KB | Ok |
2 | Correct | 106 ms | 3428 KB | Ok |
3 | Correct | 1 ms | 384 KB | Ok |
4 | Correct | 1 ms | 364 KB | Ok |
5 | Correct | 1 ms | 364 KB | Ok |
6 | Incorrect | 0 ms | 364 KB | Unexpected end of file - int32 expected |
7 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 364 KB | Unexpected end of file - int32 expected |
2 | Halted | 0 ms | 0 KB | - |