結果

問題 No.2195 AND Set
ユーザー pluto77pluto77
提出日時 2023-01-23 16:21:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 837 ms / 2,000 ms
コード長 426 bytes
コンパイル時間 833 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 87,532 KB
最終ジャッジ日時 2024-06-25 12:11:40
合計ジャッジ時間 13,204 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,712 KB
testcase_01 AC 42 ms
52,096 KB
testcase_02 AC 643 ms
79,744 KB
testcase_03 AC 741 ms
82,864 KB
testcase_04 AC 683 ms
81,104 KB
testcase_05 AC 793 ms
82,608 KB
testcase_06 AC 786 ms
81,152 KB
testcase_07 AC 709 ms
80,092 KB
testcase_08 AC 800 ms
82,748 KB
testcase_09 AC 653 ms
79,412 KB
testcase_10 AC 811 ms
87,020 KB
testcase_11 AC 837 ms
87,532 KB
testcase_12 AC 816 ms
86,904 KB
testcase_13 AC 833 ms
87,500 KB
testcase_14 AC 820 ms
87,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Q=int(input())
s=set()
res=[0]*30

for i in range(Q):
 q=list(map(int,input().split()))
 if q[0]==1:
  if q[1] not in s:
   s.add(q[1])
   for j in range(30):
    if (q[1]>>j)&1:
     res[j]+=1
 elif q[0]==2:
  if q[1] in s:
   s.discard(q[1])
   for j in range(30):
    if (q[1]>>j)&1:
     res[j]-=1
 else:
  if len(s)==0:
   print(-1)
  else:
   x=0
   for a in res[::-1]:
    x<<=1
    if a==len(s):
     x+=1
   print(x)
0