結果

問題 No.2195 AND Set
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-01-20 22:13:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 748 ms / 2,000 ms
コード長 666 bytes
コンパイル時間 389 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 87,744 KB
最終ジャッジ日時 2024-06-23 10:11:43
合計ジャッジ時間 10,680 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
51,840 KB
testcase_01 AC 44 ms
51,840 KB
testcase_02 AC 568 ms
79,616 KB
testcase_03 AC 633 ms
82,016 KB
testcase_04 AC 605 ms
80,500 KB
testcase_05 AC 735 ms
83,464 KB
testcase_06 AC 704 ms
81,664 KB
testcase_07 AC 653 ms
79,712 KB
testcase_08 AC 709 ms
82,220 KB
testcase_09 AC 619 ms
78,824 KB
testcase_10 AC 703 ms
87,020 KB
testcase_11 AC 705 ms
87,280 KB
testcase_12 AC 696 ms
87,264 KB
testcase_13 AC 713 ms
87,744 KB
testcase_14 AC 748 ms
87,096 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.remove(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