結果

問題 No.2195 AND Set
ユーザー titiatitia
提出日時 2023-01-21 00:08:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 457 ms / 2,000 ms
コード長 766 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 86,684 KB
最終ジャッジ日時 2024-06-23 12:06:40
合計ジャッジ時間 6,619 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,224 KB
testcase_01 AC 43 ms
51,840 KB
testcase_02 AC 305 ms
78,336 KB
testcase_03 AC 354 ms
79,872 KB
testcase_04 AC 330 ms
77,952 KB
testcase_05 AC 353 ms
80,768 KB
testcase_06 AC 355 ms
80,640 KB
testcase_07 AC 285 ms
78,080 KB
testcase_08 AC 359 ms
80,508 KB
testcase_09 AC 280 ms
77,628 KB
testcase_10 AC 422 ms
86,296 KB
testcase_11 AC 435 ms
86,416 KB
testcase_12 AC 457 ms
86,684 KB
testcase_13 AC 423 ms
85,904 KB
testcase_14 AC 447 ms
86,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

Q=int(input())
S=set()
A=[0]*32
ko=0

for tests in range(Q):
    X=list(map(int,input().split()))

    if X[0]==1:
        x=X[1]

        if x in S:
            pass
        else:
            S.add(x)
            ko+=1

            for i in range(32):
                if x & (1<<i) != 0:
                    A[i]+=1

    elif X[0]==2:
        x=X[1]

        if x in S:
            S.remove(x)
            ko-=1

            for i in range(32):
                if x & (1<<i) != 0:
                    A[i]-=1

    else:
        if ko==0:
            ANS=-1
        else:
            ANS=0
            for i in range(32):
                if A[i]>0 and A[i]==ko:
                    ANS|=(1<<i)

        print(ANS)
            
0