結果

問題 No.2195 AND Set
ユーザー NPNP
提出日時 2024-03-14 22:19:23
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 429 bytes
コンパイル時間 453 ms
コンパイル使用メモリ 81,900 KB
実行使用メモリ 86,144 KB
最終ジャッジ日時 2024-09-29 23:49:44
合計ジャッジ時間 6,089 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
59,776 KB
testcase_01 AC 51 ms
54,528 KB
testcase_02 AC 1,720 ms
79,852 KB
testcase_03 TLE -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import reduce
import operator

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:
        if not S:
            print(-1)
        else:
            result = reduce(operator.and_, S)
            print(result)
0