結果

問題 No.2195 AND Set
ユーザー H20H20
提出日時 2023-01-20 21:42:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,183 ms / 2,000 ms
コード長 777 bytes
コンパイル時間 477 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 95,308 KB
最終ジャッジ日時 2024-06-23 09:38:17
合計ジャッジ時間 14,349 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,016 KB
testcase_01 AC 39 ms
53,632 KB
testcase_02 AC 671 ms
81,720 KB
testcase_03 AC 736 ms
83,656 KB
testcase_04 AC 696 ms
81,620 KB
testcase_05 AC 922 ms
84,480 KB
testcase_06 AC 869 ms
83,164 KB
testcase_07 AC 760 ms
81,464 KB
testcase_08 AC 872 ms
84,756 KB
testcase_09 AC 682 ms
79,092 KB
testcase_10 AC 1,173 ms
95,148 KB
testcase_11 AC 1,183 ms
95,308 KB
testcase_12 AC 1,171 ms
95,160 KB
testcase_13 AC 1,155 ms
94,884 KB
testcase_14 AC 1,182 ms
94,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
CA = collections.Counter()
S = set()
for _ in range(int(input())):
    Q = list(map(int, input().split()))
    if Q[0]==1:
        x = Q[1]
        if not x in S:
            S.add(x)
            bx = format(x, 'b').zfill(30)[::-1]
            for i,v in enumerate(bx):
                if v=='1':
                    CA[i]+=1
    if Q[0]==2:
        x = Q[1]
        if x in S:
            S.discard(x)
            bx = format(x, 'b').zfill(30)[::-1]
            for i,v in enumerate(bx):
                if v=='1':
                    CA[i]-=1
    if Q[0]==3:
        if len(S)==0:
            print(-1)
        else:
            ans = 0
            for i,v in CA.items():
                if v == len(S):
                    ans+=2**i
            print(ans)
0