Submission #370414

#TimeUsernameProblemLanguageResultExecution timeMemory
370414daniel920712"The Lyuboyn" code (IZhO19_lyuboyn)C++14
11 / 100
256 ms7008 KiB
#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 (stderr)

lyuboyn.cpp: In function 'void F(int)':
lyuboyn.cpp:14:9: warning: unused variable 'i' [-Wunused-variable]
   14 |     int i,j;
      |         ^
lyuboyn.cpp: In function 'int main()':
lyuboyn.cpp:49:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   49 |     scanf("%d %d %d",&N,&K,&T);
      |     ~~~~~^~~~~~~~~~~~~~~~~~~~~
lyuboyn.cpp:50:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   50 |     scanf("%s",tt);
      |     ~~~~~^~~~~~~~~
#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...