結果

問題 No.2895 Zero XOR Subset
ユーザー nikoro256nikoro256
提出日時 2024-09-20 23:12:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 721 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 123,888 KB
最終ジャッジ日時 2024-09-20 23:13:00
合計ジャッジ時間 5,069 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,740 KB
testcase_01 AC 37 ms
52,788 KB
testcase_02 AC 121 ms
123,888 KB
testcase_03 AC 41 ms
58,432 KB
testcase_04 AC 44 ms
58,644 KB
testcase_05 AC 40 ms
59,196 KB
testcase_06 AC 120 ms
123,780 KB
testcase_07 AC 42 ms
59,248 KB
testcase_08 AC 119 ms
123,516 KB
testcase_09 AC 42 ms
58,556 KB
testcase_10 AC 41 ms
58,880 KB
testcase_11 AC 41 ms
59,072 KB
testcase_12 AC 120 ms
123,768 KB
testcase_13 AC 42 ms
59,760 KB
testcase_14 AC 41 ms
58,568 KB
testcase_15 AC 120 ms
123,268 KB
testcase_16 AC 43 ms
59,368 KB
testcase_17 AC 40 ms
60,108 KB
testcase_18 AC 120 ms
123,496 KB
testcase_19 AC 42 ms
60,108 KB
testcase_20 AC 41 ms
58,816 KB
testcase_21 AC 41 ms
59,256 KB
testcase_22 AC 42 ms
60,364 KB
testcase_23 AC 41 ms
59,388 KB
testcase_24 AC 42 ms
60,092 KB
testcase_25 AC 43 ms
59,000 KB
testcase_26 AC 122 ms
123,340 KB
testcase_27 AC 40 ms
59,540 KB
testcase_28 AC 40 ms
59,096 KB
testcase_29 AC 125 ms
123,752 KB
testcase_30 AC 41 ms
59,008 KB
testcase_31 AC 43 ms
59,136 KB
testcase_32 AC 122 ms
123,328 KB
testcase_33 AC 43 ms
59,136 KB
testcase_34 AC 120 ms
123,676 KB
testcase_35 AC 41 ms
58,880 KB
testcase_36 AC 120 ms
123,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

base=[]
N=int(input())
base_dat=[[] for _ in range(N)]
A=list(map(int,input().split()))
for j in range(N):
    v=A[j]
    base_d=[]
    for i in range(len(base)):
        e=base[i]
        if v>v^e:
            base_d.append(i)
            v=v^e
    if v==0:
        dat=[0 for _ in range(N)]
        ans=[]
        dat[j]=1
        base_dat[j]=base_d[::]
        for k in range(j,-1,-1):
            if dat[k]%2==1:
                ans.append(k)
                for t in base_dat[k]:
                    dat[t]+=1
        #print(dat)
        #print(base_dat,base_d)
        print(len(ans))
        print(*[a+1 for a in sorted(ans)])
        exit(0)
    if v>0:
        base.append(v)
    base_dat[j]=base_d[::]
print(-1)
0