結果

問題 No.2895 Zero XOR Subset
ユーザー timitimi
提出日時 2024-11-07 22:46:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 509 bytes
コンパイル時間 407 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 106,512 KB
最終ジャッジ日時 2024-11-07 22:46:38
合計ジャッジ時間 6,350 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 42 ms
51,840 KB
testcase_02 AC 133 ms
106,380 KB
testcase_03 AC 56 ms
60,288 KB
testcase_04 AC 52 ms
60,288 KB
testcase_05 AC 51 ms
60,160 KB
testcase_06 AC 128 ms
105,992 KB
testcase_07 AC 50 ms
60,544 KB
testcase_08 AC 124 ms
105,996 KB
testcase_09 AC 51 ms
60,032 KB
testcase_10 AC 52 ms
59,904 KB
testcase_11 AC 51 ms
60,032 KB
testcase_12 AC 124 ms
106,492 KB
testcase_13 AC 52 ms
60,800 KB
testcase_14 AC 53 ms
60,416 KB
testcase_15 AC 125 ms
105,860 KB
testcase_16 AC 51 ms
60,288 KB
testcase_17 AC 51 ms
60,288 KB
testcase_18 AC 125 ms
105,868 KB
testcase_19 AC 51 ms
60,160 KB
testcase_20 AC 51 ms
60,288 KB
testcase_21 AC 49 ms
60,160 KB
testcase_22 AC 52 ms
60,416 KB
testcase_23 AC 51 ms
60,032 KB
testcase_24 AC 51 ms
60,288 KB
testcase_25 AC 54 ms
60,416 KB
testcase_26 AC 125 ms
106,256 KB
testcase_27 AC 51 ms
60,160 KB
testcase_28 AC 52 ms
60,288 KB
testcase_29 AC 127 ms
106,380 KB
testcase_30 AC 52 ms
60,160 KB
testcase_31 AC 52 ms
60,544 KB
testcase_32 AC 126 ms
106,512 KB
testcase_33 AC 59 ms
60,672 KB
testcase_34 AC 136 ms
106,132 KB
testcase_35 AC 52 ms
60,672 KB
testcase_36 AC 126 ms
105,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))

B=[];C=[];p=1
for i in range(min(N,70)):
  B.append(A[i])
  C.append(p)
  p*=2
  
p,q=0,0;D=[]
for i in range(min(N,70)):
  a,b=B[i],C[i]
  for x,y in D:
    if a^x<a:
      a^=x;b^=y 
  if a==0:
    ans=[]
    s=str(bin(b))
    for j in range(len(s)-2):
      if s[-1-j]=='1':
        ans.append(j+1)
    print(len(ans))
    print(*ans)
    exit()
  DD=[]
  for x,y in D:
    if x^a<x:
      x^=a;y^=b 
    DD.append((x,y))
  DD.append((a,b))
  D=DD
print(-1)
0