結果

問題 No.2895 Zero XOR Subset
ユーザー tassei903tassei903
提出日時 2024-09-20 21:28:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 357 ms / 2,000 ms
コード長 775 bytes
コンパイル時間 312 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 111,708 KB
最終ジャッジ日時 2024-09-20 21:29:10
合計ジャッジ時間 6,918 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,584 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 336 ms
111,328 KB
testcase_03 AC 40 ms
58,368 KB
testcase_04 AC 41 ms
58,624 KB
testcase_05 AC 41 ms
58,240 KB
testcase_06 AC 304 ms
111,708 KB
testcase_07 AC 41 ms
57,856 KB
testcase_08 AC 350 ms
111,324 KB
testcase_09 AC 43 ms
58,624 KB
testcase_10 AC 39 ms
57,856 KB
testcase_11 AC 41 ms
57,856 KB
testcase_12 AC 291 ms
111,328 KB
testcase_13 AC 41 ms
58,368 KB
testcase_14 AC 42 ms
57,984 KB
testcase_15 AC 294 ms
111,200 KB
testcase_16 AC 41 ms
58,368 KB
testcase_17 AC 46 ms
57,728 KB
testcase_18 AC 297 ms
111,460 KB
testcase_19 AC 42 ms
57,984 KB
testcase_20 AC 43 ms
57,856 KB
testcase_21 AC 46 ms
57,472 KB
testcase_22 AC 44 ms
57,984 KB
testcase_23 AC 41 ms
57,984 KB
testcase_24 AC 42 ms
58,368 KB
testcase_25 AC 40 ms
58,368 KB
testcase_26 AC 278 ms
111,324 KB
testcase_27 AC 41 ms
58,240 KB
testcase_28 AC 41 ms
58,496 KB
testcase_29 AC 298 ms
111,320 KB
testcase_30 AC 45 ms
58,240 KB
testcase_31 AC 42 ms
58,496 KB
testcase_32 AC 357 ms
111,708 KB
testcase_33 AC 44 ms
58,752 KB
testcase_34 AC 322 ms
111,256 KB
testcase_35 AC 42 ms
58,496 KB
testcase_36 AC 339 ms
111,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
######################################################################

def popcount(x):
    r = 0
    while x:
        r += x & 1
        x >>= 1
    return r

n = ni()
a = na()

base = []

for i in range(n):
    x = a[i]
    f = 1 << i
    for b in base:
        if x ^ b[0] < x:
            x ^= b[0]
            f ^= b[1]
    if x:
        base.append((x, f))
    else:
        print(popcount(f))
        print(*[i + 1 for i in range(n) if f & (1 << i)])
        break
else:
    print(-1)
0