結果

問題 No.2195 AND Set
ユーザー qibqib
提出日時 2023-04-17 00:53:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 836 ms / 2,000 ms
コード長 587 bytes
コンパイル時間 347 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 88,688 KB
最終ジャッジ日時 2024-10-12 05:38:52
合計ジャッジ時間 12,320 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 602 ms
79,768 KB
testcase_03 AC 677 ms
82,168 KB
testcase_04 AC 622 ms
80,512 KB
testcase_05 AC 708 ms
81,584 KB
testcase_06 AC 836 ms
82,048 KB
testcase_07 AC 670 ms
79,112 KB
testcase_08 AC 732 ms
81,956 KB
testcase_09 AC 629 ms
78,080 KB
testcase_10 AC 696 ms
87,868 KB
testcase_11 AC 701 ms
88,244 KB
testcase_12 AC 698 ms
88,688 KB
testcase_13 AC 705 ms
88,216 KB
testcase_14 AC 715 ms
88,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

q = int(input())

s = set()
bit = [[0 for _ in range(2)] for _ in range(30)]
for _ in range(q):
  t, *args = list(map(int, input().split()))
  if t == 1:
    xi = args[0]
    if not xi in s:
      for i in range(30):
        bit[i][(xi >> i) & 1] += 1
      s.add(xi)
  elif t == 2:
    xi = args[0]
    if xi in s:
      for i in range(30):
        bit[i][(xi >> i) & 1] -= 1
      s.discard(xi)
  elif t == 3:
    if len(s) == 0:
      print("-1")
    else:
      ans = 0
      for i in range(30):
        if bit[i][1] > 0 and bit[i][0] == 0:
          ans |= (1 << i)
      print(ans)
0