結果

問題 No.2195 AND Set
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-01-21 10:36:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 725 ms / 2,000 ms
コード長 667 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 87,880 KB
最終ジャッジ日時 2024-06-23 19:47:09
合計ジャッジ時間 12,128 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,072 KB
testcase_01 AC 37 ms
52,368 KB
testcase_02 AC 587 ms
79,568 KB
testcase_03 AC 618 ms
82,924 KB
testcase_04 AC 580 ms
80,500 KB
testcase_05 AC 714 ms
83,332 KB
testcase_06 AC 718 ms
81,536 KB
testcase_07 AC 670 ms
79,704 KB
testcase_08 AC 702 ms
82,480 KB
testcase_09 AC 610 ms
78,960 KB
testcase_10 AC 715 ms
87,116 KB
testcase_11 AC 714 ms
86,872 KB
testcase_12 AC 697 ms
87,276 KB
testcase_13 AC 725 ms
87,880 KB
testcase_14 AC 695 ms
87,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

q = int(input())
xor = 0
s = set()

bit = [0]*30
for _ in range(q):
    l = list(map(int,input().split()))
    if l[0] == 1:
        x = l[1]
        if x in s:
            continue
        s.add(x)
        for i in range(30):
            if x >> i & 1:
                bit[i] += 1
    elif l[0] == 2:
        x = l[1]
        if x in s:
            s.discard(x)
            for i in range(30):
                if x >> i & 1:
                    bit[i] -= 1
    else:

        bitwise = 0
        le = len(s)
        for i in range(30):
            if bit[i] == le:
                bitwise += 1 << i
        if le == 0:
            bitwise = -1
        print(bitwise)
0