結果

問題 No.2195 AND Set
ユーザー n_nan_na
提出日時 2023-01-21 03:52:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 908 ms / 2,000 ms
コード長 815 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 89,424 KB
最終ジャッジ日時 2024-06-23 15:03:39
合計ジャッジ時間 11,303 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,676 KB
testcase_01 AC 37 ms
52,020 KB
testcase_02 AC 559 ms
80,456 KB
testcase_03 AC 629 ms
82,900 KB
testcase_04 AC 547 ms
80,576 KB
testcase_05 AC 753 ms
82,392 KB
testcase_06 AC 788 ms
82,656 KB
testcase_07 AC 674 ms
78,808 KB
testcase_08 AC 705 ms
81,684 KB
testcase_09 AC 534 ms
77,760 KB
testcase_10 AC 850 ms
89,008 KB
testcase_11 AC 908 ms
89,424 KB
testcase_12 AC 829 ms
88,760 KB
testcase_13 AC 794 ms
88,876 KB
testcase_14 AC 903 ms
89,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Q = int(input())

se = set()
res = 1<<30
cnt = [0]*31
for _ in range(Q):
    qu = list(map(int,input().split()))
    
    if qu[0] == 1:
        k = qu[1]
        if k not in se:
            se.add(k)
            res &= k
            b = format(k,"b")
            for i in range(len(b)):
                if b[~i] == "1":
                    cnt[i] += 1
                    
    elif qu[0] == 2:
        k = qu[1]
        if k in se:
            se.remove(k)
            b = format(k,"b")
            for i in range(len(b)):
                if b[~i] == "1":
                    cnt[i] -= 1
            res = 0
            for j in range(31):
                if cnt[j] == len(se):
                    res += pow(2,j)
                    
    else:
        if len(se) == 0: print(-1)
        else: print(res)
        
0