結果

問題 No.2195 AND Set
ユーザー rlangevinrlangevin
提出日時 2023-01-20 21:35:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 438 ms / 2,000 ms
コード長 762 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 86,548 KB
最終ジャッジ日時 2024-06-23 09:29:01
合計ジャッジ時間 6,336 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 42 ms
51,456 KB
testcase_02 AC 305 ms
78,336 KB
testcase_03 AC 334 ms
80,384 KB
testcase_04 AC 288 ms
78,208 KB
testcase_05 AC 318 ms
80,256 KB
testcase_06 AC 328 ms
80,000 KB
testcase_07 AC 285 ms
78,080 KB
testcase_08 AC 344 ms
80,128 KB
testcase_09 AC 269 ms
77,312 KB
testcase_10 AC 410 ms
85,760 KB
testcase_11 AC 438 ms
86,548 KB
testcase_12 AC 414 ms
85,908 KB
testcase_13 AC 433 ms
86,428 KB
testcase_14 AC 436 ms
86,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline

Q = int(readline())
S = set()
M = 35
D = [0] * M
cnt = 0
for _ in range(Q):
    query = list(map(int, readline().split()))
    if query[0] == 1:
        x = query[1]
        if x in S:
            continue
        S.add(x)
        cnt += 1
        for i in range(M):
            if (x >> i) & 1:
                D[i] += 1
    elif query[0] == 2:
        x = query[1]
        if x in S:
            S.discard(query[1])
            cnt -= 1
            for i in range(M):
                if (x >> i) & 1:
                    D[i] -= 1
    else:
        v = 0
        if cnt == 0:
            print(-1)
            continue
        for i in range(M):
            if D[i] == cnt:
                v += 1 << i
        print(v)
0