結果

問題 No.2195 AND Set
ユーザー bluemeganebluemegane
提出日時 2023-01-21 07:07:57
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 693 ms / 2,000 ms
コード長 1,455 bytes
コンパイル時間 815 ms
コンパイル使用メモリ 110,512 KB
実行使用メモリ 35,608 KB
最終ジャッジ日時 2024-06-23 17:22:37
合計ジャッジ時間 12,164 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
27,988 KB
testcase_01 AC 29 ms
25,980 KB
testcase_02 AC 466 ms
29,896 KB
testcase_03 AC 473 ms
32,288 KB
testcase_04 AC 459 ms
30,276 KB
testcase_05 AC 677 ms
30,576 KB
testcase_06 AC 681 ms
30,384 KB
testcase_07 AC 677 ms
31,952 KB
testcase_08 AC 693 ms
30,372 KB
testcase_09 AC 674 ms
32,060 KB
testcase_10 AC 624 ms
33,444 KB
testcase_11 AC 634 ms
35,608 KB
testcase_12 AC 615 ms
35,240 KB
testcase_13 AC 613 ms
33,440 KB
testcase_14 AC 623 ms
35,360 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using static System.Math;
using System.Collections.Generic;
using System.Linq;
using System;

public class Hello
{
    static void Main()
    {
        var q = int.Parse(Console.ReadLine().Trim());
        getAns(q);
    }
    static void getAns(int q)
    {
        var b = new int[30];
        var hs = new HashSet<int>();
        for (int i = 0; i < q; i++)
        {
            string[] line = Console.ReadLine().Trim().Split(' ');
            if (line[0] == "1")
            {
                var x = int.Parse(line[1]);
                if (hs.Add(x))
                {
                    for (int j = 0; j < 30; j++)
                    {
                        if (((x >> j) & 1) == 1) b[j]++;
                    }
                }
            }
            else if (line[0] == "2")
            {
                var x = int.Parse(line[1]);
                if (hs.Remove(x))
                {
                    for (int j = 0; j < 30; j++)
                    {
                        if (((x >> j) & 1) == 1) b[j]--;
                    }
                }
            }
            else
            {
                var hsc = hs.Count;
                if (hsc == 0) { Console.WriteLine(-1); continue; }
                var ans = 0;
                for (int j = 0; j < 30; j++)
                {
                    if (b[j] == hsc) ans |= 1 << j;
                }
                Console.WriteLine(ans);
            }
        }
    }
}
0