제출 #290909

#제출 시각아이디문제언어결과실행 시간메모리
290909Plurm"The Lyuboyn" code (IZhO19_lyuboyn)C++11
19 / 100
256 ms34184 KiB
#include <bits/stdc++.h> using namespace std; int lsb[300005]; int rmp[300005]; set<string> s; int main(){ int n,k,t; scanf("%d%d%d",&n,&k,&t); if(k % 2 == 0 || k >= n){ printf("-1\n"); return 0; } for(int i = 0; i <= 18; i++) rmp[1 << i] = i; printf("%d\n", 1 << n); char bs[32]; scanf("%s",bs); if(strlen(bs) != n) while(true); int parsed = 0; for(int i = 0; i < n; i++){ parsed *= 2; parsed += bs[i] == '1' ? 1 : 0; } printf("%s\n",bs); s.insert(bs); for(int i = 1; i < (1 << n); i++){ int bit = rmp[i & -i]; for(int j = 0; j < k; j++){ int toggidx = (bit+j) % n; bs[n-toggidx-1] = '0'+'1'-bs[n-toggidx-1]; } printf("%s\n",bs); s.insert(bs); } return 0; }

컴파일 시 표준 에러 (stderr) 메시지

lyuboyn.cpp: In function 'int main()':
lyuboyn.cpp:17:16: warning: comparison of integer expressions of different signedness: 'size_t' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   17 |  if(strlen(bs) != n) while(true);
      |     ~~~~~~~~~~~^~~~
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:16:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   16 |  scanf("%s",bs);
      |  ~~~~~^~~~~~~~~
#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...