結果

問題 No.2195 AND Set
ユーザー strangerxxxstrangerxxx
提出日時 2023-01-20 21:37:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 815 ms / 2,000 ms
コード長 904 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 87,544 KB
最終ジャッジ日時 2024-06-23 09:31:02
合計ジャッジ時間 10,733 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 533 ms
78,080 KB
testcase_03 AC 596 ms
80,256 KB
testcase_04 AC 540 ms
78,720 KB
testcase_05 AC 690 ms
80,128 KB
testcase_06 AC 736 ms
80,896 KB
testcase_07 AC 631 ms
79,188 KB
testcase_08 AC 729 ms
80,768 KB
testcase_09 AC 603 ms
77,568 KB
testcase_10 AC 815 ms
87,144 KB
testcase_11 AC 770 ms
87,164 KB
testcase_12 AC 795 ms
87,544 KB
testcase_13 AC 741 ms
86,780 KB
testcase_14 AC 710 ms
86,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def resolve():
    q = int(input())
    s = set()
    cnt = [0] * 30
    for _ in range(q):
        query = tuple(map(int, input().split()))
        if query[0] == 1:
            x = query[1]
            if x not in s:
                s.add(x)
                i = 0
                while x:
                    if x & 1:
                        cnt[i] += 1
                    x >>= 1
                    i += 1
        elif query[0] == 2:
            x = query[1]
            if x in s:
                s.remove(x)
                i = 0
                while x:
                    if x & 1:
                        cnt[i] -= 1
                    x >>= 1
                    i += 1
        else:
            if s:
                print(sum(1 << i for i, x in enumerate(cnt) if x == len(s)))
            else:
                print(-1)
        # print(s, cnt)


if __name__ == "__main__":
    resolve()
0