結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,628 KB
testcase_01 AC 37 ms
51,944 KB
testcase_02 AC 109 ms
106,288 KB
testcase_03 AC 43 ms
62,160 KB
testcase_04 AC 43 ms
61,476 KB
testcase_05 AC 43 ms
62,440 KB
testcase_06 AC 108 ms
106,300 KB
testcase_07 AC 44 ms
62,696 KB
testcase_08 AC 107 ms
106,272 KB
testcase_09 AC 45 ms
61,548 KB
testcase_10 AC 43 ms
62,284 KB
testcase_11 AC 43 ms
61,944 KB
testcase_12 AC 109 ms
106,284 KB
testcase_13 AC 44 ms
63,168 KB
testcase_14 AC 42 ms
61,632 KB
testcase_15 AC 107 ms
106,172 KB
testcase_16 AC 43 ms
61,752 KB
testcase_17 AC 43 ms
62,224 KB
testcase_18 AC 108 ms
106,120 KB
testcase_19 AC 44 ms
61,412 KB
testcase_20 AC 43 ms
61,064 KB
testcase_21 AC 42 ms
61,192 KB
testcase_22 AC 43 ms
61,952 KB
testcase_23 AC 42 ms
61,152 KB
testcase_24 AC 42 ms
62,472 KB
testcase_25 AC 44 ms
61,124 KB
testcase_26 AC 108 ms
106,404 KB
testcase_27 AC 44 ms
61,068 KB
testcase_28 AC 43 ms
61,808 KB
testcase_29 AC 107 ms
106,804 KB
testcase_30 AC 43 ms
61,544 KB
testcase_31 AC 43 ms
61,596 KB
testcase_32 AC 108 ms
106,384 KB
testcase_33 AC 43 ms
63,060 KB
testcase_34 AC 111 ms
106,156 KB
testcase_35 AC 43 ms
62,928 KB
testcase_36 AC 108 ms
106,312 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(*sorted(b))
else:
    print(-1)
0