結果

問題 No.2195 AND Set
ユーザー FromBooskaFromBooska
提出日時 2023-08-31 13:50:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 745 ms / 2,000 ms
コード長 1,022 bytes
コンパイル時間 365 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 89,664 KB
最終ジャッジ日時 2025-01-03 04:35:03
合計ジャッジ時間 11,132 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 579 ms
81,004 KB
testcase_03 AC 656 ms
81,952 KB
testcase_04 AC 606 ms
80,520 KB
testcase_05 AC 725 ms
82,396 KB
testcase_06 AC 699 ms
83,128 KB
testcase_07 AC 666 ms
80,444 KB
testcase_08 AC 745 ms
82,800 KB
testcase_09 AC 607 ms
78,592 KB
testcase_10 AC 732 ms
88,488 KB
testcase_11 AC 724 ms
88,988 KB
testcase_12 AC 737 ms
88,772 KB
testcase_13 AC 740 ms
89,664 KB
testcase_14 AC 725 ms
88,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# セグメントツリーでできたが前回の方法でもやってみる
# 30桁しかないのでそれぞれの桁に1が何回出たかカウントすればいい

Q = int(input())
one_count = [0]*30
S = set()
count = 0
for q in range(Q):
    query = list(map(int, input().split()))
    if query[0] == 1:
        x = query[1]
        if x not in S:
            S.add(x)
            count += 1
            for i in range(30):
                if x>>i&1 == 1:
                    one_count[i] += 1
    elif query[0] == 2:
        x = query[1]
        if x in S:
            S.discard(x)
            count -= 1
            for i in range(30):
                if x>>i&1 == 1:
                    one_count[i] -= 1
    elif query[0] == 3:
        if count > 0:
            ans = 0
            for d in range(30):
                if one_count[d] == count:
                    ans += pow(2, d)
            print(ans)
        else:
            print(-1)
    #print('q', q, 'count', count)
    #print('one_count', one_count)
0