結果

問題 No.2195 AND Set
ユーザー titiatitia
提出日時 2023-01-21 00:04:55
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 758 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 19,312 KB
最終ジャッジ日時 2024-06-23 12:02:47
合計ジャッジ時間 19,515 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
17,696 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 1,179 ms
12,032 KB
testcase_03 AC 1,408 ms
14,008 KB
testcase_04 AC 1,140 ms
11,904 KB
testcase_05 AC 1,840 ms
14,012 KB
testcase_06 AC 1,795 ms
14,012 KB
testcase_07 AC 1,445 ms
11,648 KB
testcase_08 AC 1,817 ms
14,008 KB
testcase_09 WA -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
権限があれば一括ダウンロードができます

ソースコード

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:
        ANS=-1

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

        print(ANS)
            
0