結果

問題 No.2195 AND Set
ユーザー ニックネームニックネーム
提出日時 2023-01-20 21:47:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 684 ms / 2,000 ms
コード長 506 bytes
コンパイル時間 378 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 87,788 KB
最終ジャッジ日時 2024-06-23 09:44:04
合計ジャッジ時間 10,166 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,712 KB
testcase_01 AC 36 ms
51,968 KB
testcase_02 AC 561 ms
79,904 KB
testcase_03 AC 619 ms
82,816 KB
testcase_04 AC 574 ms
80,524 KB
testcase_05 AC 679 ms
81,348 KB
testcase_06 AC 684 ms
82,412 KB
testcase_07 AC 637 ms
79,156 KB
testcase_08 AC 674 ms
81,716 KB
testcase_09 AC 638 ms
80,012 KB
testcase_10 AC 649 ms
86,640 KB
testcase_11 AC 658 ms
87,276 KB
testcase_12 AC 635 ms
86,644 KB
testcase_13 AC 662 ms
87,788 KB
testcase_14 AC 656 ms
87,404 KB
権限があれば一括ダウンロードができます

ソースコード

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