結果

問題 No.2195 AND Set
ユーザー lllllll88938494lllllll88938494
提出日時 2023-02-19 07:03:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,109 ms / 2,000 ms
コード長 1,053 bytes
コンパイル時間 635 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 95,012 KB
最終ジャッジ日時 2024-07-20 09:53:27
合計ジャッジ時間 13,166 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,480 KB
testcase_01 AC 43 ms
51,840 KB
testcase_02 AC 618 ms
81,476 KB
testcase_03 AC 720 ms
83,780 KB
testcase_04 AC 622 ms
81,440 KB
testcase_05 AC 875 ms
82,960 KB
testcase_06 AC 909 ms
84,356 KB
testcase_07 AC 699 ms
80,544 KB
testcase_08 AC 800 ms
83,020 KB
testcase_09 AC 665 ms
79,360 KB
testcase_10 AC 1,014 ms
93,480 KB
testcase_11 AC 1,034 ms
95,012 KB
testcase_12 AC 1,011 ms
93,872 KB
testcase_13 AC 1,109 ms
94,224 KB
testcase_14 AC 1,013 ms
93,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x = int(input())
a = [{1:0,0:0} for i in range(32)]
s = set()
for i in range(x):
    t =list(map(int,input().split()))
    if t[0] == 1:
        if t[1] in s:
            continue
        else:
            s.add(t[1])
            b=bin(t[1])
            for i in range(31,-1,-1):
                if  i >= len(b)-2:
                    a[i][0] += 1
                    continue
                a[i][int(b[~i])] += 1
                
    elif t[0] == 2:
        if t[1] not in s:
            continue
        else:
            s.discard(t[1])
            b=bin(t[1])
            for i in range(31,-1,-1):
                if  i >= len(b)-2:
                    a[i][0] -= 1
                    continue
                a[i][int(b[~i])] -= 1
                
    else:
        if len(s) == 0:
            print(-1)
            continue
        aa=0
        for i in range(31):
            if a[i][1] >= 1 and a[i][0] == 0:
                aa += pow(2,i)
        print(aa)
            
            
            
            
                
                
0