結果

問題 No.2895 Zero XOR Subset
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-20 23:30:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 437 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 106,736 KB
最終ジャッジ日時 2024-09-20 23:30:59
合計ジャッジ時間 4,744 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,336 KB
testcase_01 AC 37 ms
52,708 KB
testcase_02 AC 106 ms
106,196 KB
testcase_03 AC 42 ms
60,664 KB
testcase_04 AC 43 ms
61,564 KB
testcase_05 AC 42 ms
59,932 KB
testcase_06 AC 104 ms
106,096 KB
testcase_07 AC 43 ms
60,508 KB
testcase_08 AC 106 ms
106,092 KB
testcase_09 AC 42 ms
60,440 KB
testcase_10 AC 43 ms
60,824 KB
testcase_11 AC 45 ms
60,660 KB
testcase_12 AC 106 ms
106,736 KB
testcase_13 AC 42 ms
60,572 KB
testcase_14 AC 42 ms
61,100 KB
testcase_15 AC 104 ms
106,096 KB
testcase_16 AC 44 ms
59,984 KB
testcase_17 AC 44 ms
60,300 KB
testcase_18 AC 108 ms
105,944 KB
testcase_19 AC 44 ms
60,124 KB
testcase_20 AC 43 ms
60,984 KB
testcase_21 AC 41 ms
60,988 KB
testcase_22 AC 41 ms
60,776 KB
testcase_23 AC 44 ms
61,152 KB
testcase_24 AC 43 ms
60,104 KB
testcase_25 AC 40 ms
61,772 KB
testcase_26 AC 111 ms
106,216 KB
testcase_27 AC 43 ms
60,692 KB
testcase_28 AC 42 ms
61,808 KB
testcase_29 AC 104 ms
106,708 KB
testcase_30 AC 43 ms
60,176 KB
testcase_31 AC 44 ms
61,092 KB
testcase_32 AC 102 ms
106,328 KB
testcase_33 AC 43 ms
61,260 KB
testcase_34 AC 104 ms
106,152 KB
testcase_35 AC 41 ms
61,812 KB
testcase_36 AC 106 ms
106,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=min(int(input()),61)
a=list(map(int,input().split()))[:n]
u=[0]*n
for i in range(n):
  u[i]|=1<<i
r=0
y=0
while r<n and y<60:
  for i in range(r,n):
    if (a[i]>>y)&1:
      a[r],a[i]=a[i],a[r]
      u[r],u[i]=u[i],u[r]
      for j in range(n):
        if j!=r and (a[j]>>y)&1:
          a[j]^=a[r]
          u[j]^=u[r]
      r+=1
  y+=1
if r<n:
  a=[i+1 for i in range(n) if (u[r]>>i)&1]
  print(len(a))
  print(*a)
else:
  print(-1)
0