結果

問題 No.2195 AND Set
ユーザー ニックネームニックネーム
提出日時 2023-01-20 21:46:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 506 bytes
コンパイル時間 538 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 24,768 KB
最終ジャッジ日時 2024-06-23 09:43:50
合計ジャッジ時間 24,461 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
16,256 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

a = [[0,0] for _ in range(30)]; s = set()
for _ in range(int(input())):
    q = list(map(int,input().split()))
    if q[0]==1:
        x = q[1]
        if x in s: continue
        for i in range(30): a[i][x>>i&1] += 1
        s.add(x)
    if q[0]==2:
        x = q[1]
        if x not in s: continue
        for i in range(30): a[i][x>>i&1] -= 1
        s.remove(x)
    if q[0]==3:
        ans = 0
        for i,(p,q) in enumerate(a):
            if not p and q: ans |= 1<<i
        print(ans if s else -1)
0