Submission #250527

#TimeUsernameProblemLanguageResultExecution timeMemory
250527dvdg6566Popcount (COCI19_popcount)C++14
Compilation error
0 ms0 KiB
A=[int(x) for x in input().split(' ')] N=A[0] M=A[1] X=[] ml=0 for x in range(M): A=0 B=0 for i in range(N): if((2**ml)&i): A+=2**i else:B+=2**i ml+=1 X.append("A=((A&"+str(A)+")>>"+str(ml)+")+(A&"+str(B)+'))') if(2**ml>=N):break print(len(X)) for i in X: print(i)

Compilation message (stderr)

popcount.cpp:14:56: warning: multi-character character constant [-Wmultichar]
  X.append("A=((A&"+str(A)+")>>"+str(ml)+")+(A&"+str(B)+'))')
                                                        ^~~~
popcount.cpp:1:1: error: 'A' does not name a type
 A=[int(x) for x in input().split(' ')]
 ^