結果

問題 No.2195 AND Set
ユーザー roarisroaris
提出日時 2023-01-25 07:17:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 463 ms / 2,000 ms
コード長 858 bytes
コンパイル時間 1,052 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 105,236 KB
最終ジャッジ日時 2024-06-26 12:40:32
合計ジャッジ時間 8,257 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,144 KB
testcase_01 AC 40 ms
53,632 KB
testcase_02 AC 315 ms
83,068 KB
testcase_03 AC 361 ms
83,136 KB
testcase_04 AC 313 ms
82,992 KB
testcase_05 AC 348 ms
87,492 KB
testcase_06 AC 367 ms
87,772 KB
testcase_07 AC 306 ms
85,868 KB
testcase_08 AC 348 ms
87,252 KB
testcase_09 AC 280 ms
86,328 KB
testcase_10 AC 463 ms
104,984 KB
testcase_11 AC 463 ms
105,128 KB
testcase_12 AC 462 ms
105,236 KB
testcase_13 AC 458 ms
105,104 KB
testcase_14 AC 456 ms
104,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

flag = defaultdict(int)
cnt = 0
bit = [0]*30

for _ in range(int(input())):
    qs = list(map(int, input().split()))
    
    if qs[0]==1:
        x = qs[1]
        
        if flag[x]==0:
            flag[x] = 1
            cnt += 1
            
            for b in range(30):
                if (x>>b)&1:
                    bit[b] += 1
    elif qs[0]==2:
        x = qs[1]
        
        if flag[x]==1:
            flag[x] = 0
            cnt -= 1
            
            for b in range(30):
                if (x>>b)&1:
                    bit[b] -= 1
    else:
        if cnt==0:
            print(-1)
        else:
            ans = 0
            
            for b in range(30):
                if bit[b]==cnt:
                    ans += 1<<b
                
            print(ans)
0