結果
問題 | No.2195 AND Set |
ユーザー | NP |
提出日時 | 2024-03-14 22:33:14 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 655 bytes |
コンパイル時間 | 340 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 83,456 KB |
最終ジャッジ日時 | 2024-09-29 23:49:49 |
合計ジャッジ時間 | 4,443 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
56,960 KB |
testcase_01 | AC | 41 ms
51,584 KB |
testcase_02 | TLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
ソースコード
def fast_bitwise_and(S): if len(S) == 0: return -1 MAX_BITS = 32 count = [0] * MAX_BITS for num in S: for bit in range(MAX_BITS): if num & (1 << bit): count[bit] += 1 result = 0 for bit in range(MAX_BITS): if count[bit] == len(S): result |= (1 << bit) return result Q = int(input().strip()) S = set() for _ in range(Q): query = list(map(int, input().strip().split())) if query[0] == 1: S.add(query[1]) elif query[0] == 2: if query[1] in S: S.remove(query[1]) elif query[0] == 3: print(fast_bitwise_and(S))