結果

問題 No.2895 Zero XOR Subset
ユーザー MitarushiMitarushi
提出日時 2024-09-19 20:10:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 798 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 106,360 KB
最終ジャッジ日時 2024-09-19 21:53:05
合計ジャッジ時間 4,753 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 117 ms
106,096 KB
testcase_03 AC 47 ms
60,672 KB
testcase_04 AC 46 ms
60,928 KB
testcase_05 AC 46 ms
60,672 KB
testcase_06 AC 116 ms
106,232 KB
testcase_07 AC 46 ms
60,800 KB
testcase_08 AC 119 ms
106,352 KB
testcase_09 AC 46 ms
61,056 KB
testcase_10 AC 45 ms
60,672 KB
testcase_11 AC 45 ms
60,800 KB
testcase_12 AC 113 ms
106,352 KB
testcase_13 AC 46 ms
61,056 KB
testcase_14 AC 47 ms
60,672 KB
testcase_15 AC 118 ms
106,224 KB
testcase_16 AC 47 ms
60,800 KB
testcase_17 AC 46 ms
60,928 KB
testcase_18 AC 121 ms
105,924 KB
testcase_19 AC 49 ms
61,184 KB
testcase_20 AC 47 ms
60,800 KB
testcase_21 AC 46 ms
60,416 KB
testcase_22 AC 47 ms
61,184 KB
testcase_23 AC 47 ms
60,544 KB
testcase_24 AC 48 ms
60,672 KB
testcase_25 AC 46 ms
60,928 KB
testcase_26 AC 117 ms
106,360 KB
testcase_27 AC 47 ms
60,928 KB
testcase_28 AC 47 ms
60,800 KB
testcase_29 AC 128 ms
106,108 KB
testcase_30 AC 48 ms
60,800 KB
testcase_31 AC 49 ms
60,928 KB
testcase_32 AC 119 ms
106,236 KB
testcase_33 AC 47 ms
60,928 KB
testcase_34 AC 122 ms
106,184 KB
testcase_35 AC 48 ms
60,800 KB
testcase_36 AC 121 ms
106,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))

assert 1 <= n <= 2 * 10**5
assert len(a) == n
assert all(0 <= x <= 1 << 60 for x in a)

if n > 61:
    n = 61
    a = a[:61]

idx_list = [{i} for i, _ in enumerate(a)]

pivot = 0
for i in range(60):
    for j in range(pivot, n):
        if a[j] & (1 << i):
            a[pivot], a[j] = a[j], a[pivot]
            idx_list[pivot], idx_list[j] = idx_list[j], idx_list[pivot]
            break
    else:
        continue
    
    for j in range(n):
        if j == pivot:
            continue
        if a[j] & (1 << i):
            a[j] ^= a[pivot]
            idx_list[j] ^= idx_list[pivot]
    
    pivot += 1

if 0 in a:
    zero_idx = a.index(0)
    b = [i + 1 for i in idx_list[zero_idx]]
    print(len(b))
    print(*b)
else:
    print(-1)
0