結果

問題 No.2195 AND Set
ユーザー shobonvipshobonvip
提出日時 2023-01-20 21:45:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 728 ms / 2,000 ms
コード長 468 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 87,276 KB
最終ジャッジ日時 2024-06-23 09:41:24
合計ジャッジ時間 10,380 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,840 KB
testcase_01 AC 43 ms
51,840 KB
testcase_02 AC 575 ms
80,000 KB
testcase_03 AC 662 ms
82,176 KB
testcase_04 AC 570 ms
80,640 KB
testcase_05 AC 702 ms
82,564 KB
testcase_06 AC 708 ms
81,108 KB
testcase_07 AC 648 ms
79,052 KB
testcase_08 AC 680 ms
82,784 KB
testcase_09 AC 587 ms
79,120 KB
testcase_10 AC 692 ms
87,016 KB
testcase_11 AC 728 ms
86,896 KB
testcase_12 AC 702 ms
87,020 KB
testcase_13 AC 692 ms
87,276 KB
testcase_14 AC 724 ms
86,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = set()
Q = int(input())
v = [0] * 30
for _ in range(Q):
	t = list(map(int,input().split()))
	if t[0] == 1:
		x = t[1]
		if x in S: continue
		for i in range(30):
			if x >> i & 1:
				v[i] += 1
		S.add(x)
	elif t[0] == 2:
		x = t[1]
		if x not in S: continue
		for i in range(30):
			if x >> i & 1:
				v[i] -= 1
		S.remove(x)
	else:
		ret = 0
		r = len(S)
		if r == 0:
			print(-1)
			continue
		for i in range(30):
			if v[i] == r:
				ret += 1 << i
		print(ret)
0