結果

問題 No.2195 AND Set
ユーザー lloyzlloyz
提出日時 2023-01-20 21:31:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 736 ms / 2,000 ms
コード長 698 bytes
コンパイル時間 568 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 87,524 KB
最終ジャッジ日時 2024-06-23 09:24:29
合計ジャッジ時間 10,002 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 574 ms
80,636 KB
testcase_03 AC 594 ms
81,688 KB
testcase_04 AC 609 ms
80,636 KB
testcase_05 AC 736 ms
80,896 KB
testcase_06 AC 661 ms
81,660 KB
testcase_07 AC 584 ms
79,016 KB
testcase_08 AC 639 ms
81,888 KB
testcase_09 AC 628 ms
79,344 KB
testcase_10 AC 688 ms
87,392 KB
testcase_11 AC 649 ms
87,400 KB
testcase_12 AC 610 ms
87,272 KB
testcase_13 AC 636 ms
87,024 KB
testcase_14 AC 643 ms
87,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

q = int(input())
res = 1 << 30
seen = set()
D = [0 for _ in range(30)]
for _ in range(q):
    L = list(map(int, input().split()))
    if L[0] == 1:
        x = L[1]
        if x not in seen:
            seen.add(x)
            for i in range(30):
                D[i] += x % 2
                x //= 2
    elif L[0] == 2:
        x = L[1]
        if x in seen:
            seen.remove(x)
            for i in range(30):
                D[i] -= x % 2
                x //= 2
    else:
        if len(seen) == 0:
            print(-1)
            continue
        ans = 0
        num = len(seen)
        for i in range(30):
            if D[i] == num:
                ans += 1 << i
        print(ans)
0