結果

問題 No.2195 AND Set
ユーザー ikomaikoma
提出日時 2023-01-20 22:08:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 399 ms / 2,000 ms
コード長 677 bytes
コンパイル時間 443 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 86,804 KB
最終ジャッジ日時 2024-06-23 10:05:52
合計ジャッジ時間 6,024 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 283 ms
78,336 KB
testcase_03 AC 336 ms
80,256 KB
testcase_04 AC 284 ms
78,720 KB
testcase_05 AC 300 ms
80,896 KB
testcase_06 AC 317 ms
80,512 KB
testcase_07 AC 263 ms
78,336 KB
testcase_08 AC 296 ms
80,640 KB
testcase_09 AC 248 ms
77,952 KB
testcase_10 AC 388 ms
86,804 KB
testcase_11 AC 399 ms
86,552 KB
testcase_12 AC 381 ms
86,544 KB
testcase_13 AC 391 ms
86,548 KB
testcase_14 AC 385 ms
86,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

Q=int(input())
S=set()
ans=[0]*30

for _ in range(Q):
    q=list(map(int,input().split()))
    if q[0]==1:
        x=q[1]
        if x not in S:
            S.add(x)
            for i in range(30):
                if (x>>i)&1:
                    ans[i]+=1
    elif q[0]==2:
        x=q[1]
        if x in S:
            S.discard(x)
            for i in range(30):
                if (x>>i)&1:
                    ans[i]-=1
    else:
        if len(S)==0:
            print(-1)
        else:
            x=0
            for a in ans[::-1]:
                x<<=1
                if a==len(S):
                    x+=1
            print(x)
0