def solve(): N,S=map(int,input().split()) A=list(map(int,input().split())) C=1 mask=(1<<(S+1))-1 for i in A: if i<=S: C|=C<