結果

問題 No.2195 AND Set
ユーザー HydruHydru
提出日時 2023-01-20 21:36:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 689 ms / 2,000 ms
コード長 720 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 87,540 KB
最終ジャッジ日時 2024-06-23 09:29:42
合計ジャッジ時間 9,697 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
51,584 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 564 ms
79,476 KB
testcase_03 AC 627 ms
82,172 KB
testcase_04 AC 570 ms
80,404 KB
testcase_05 AC 660 ms
81,584 KB
testcase_06 AC 684 ms
81,192 KB
testcase_07 AC 630 ms
78,996 KB
testcase_08 AC 689 ms
81,568 KB
testcase_09 AC 597 ms
78,968 KB
testcase_10 AC 666 ms
86,900 KB
testcase_11 AC 643 ms
86,900 KB
testcase_12 AC 615 ms
86,808 KB
testcase_13 AC 635 ms
87,540 KB
testcase_14 AC 632 ms
87,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

bit=[0 for _ in range(30)]

q=int(input())

S=set()
for _ in range(q):
    A=list(map(int,input().split()))
    if A[0]==1:
        x=A[1]
        if x in S:
            continue
        S.add(x)
        cnt=0
        while(x>0):
            bit[cnt]+=x%2
            x//=2
            cnt+=1

    if A[0]==2:
        x=A[1]
        if x not in S:
            continue
        S.remove(x)
        cnt=0
        while(x>0):
            bit[cnt]-=x%2
            x//=2
            cnt+=1
    if A[0]==3:
        L=len(S)
        if L==0:
            print(-1)
            continue
        cnt=0
        b_and=0
        for i in range(30):
            if bit[i]==L:
                b_and+=2**i
        print(b_and)
        
0