結果

問題 No.2195 AND Set
ユーザー tentententen
提出日時 2024-07-30 15:06:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,065 ms / 2,000 ms
コード長 2,366 bytes
コンパイル時間 2,483 ms
コンパイル使用メモリ 79,600 KB
実行使用メモリ 67,744 KB
最終ジャッジ日時 2024-07-30 15:06:36
合計ジャッジ時間 17,697 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
42,644 KB
testcase_01 AC 51 ms
42,612 KB
testcase_02 AC 912 ms
63,080 KB
testcase_03 AC 1,014 ms
66,452 KB
testcase_04 AC 846 ms
60,188 KB
testcase_05 AC 972 ms
67,744 KB
testcase_06 AC 967 ms
61,888 KB
testcase_07 AC 945 ms
65,024 KB
testcase_08 AC 772 ms
65,412 KB
testcase_09 AC 675 ms
61,664 KB
testcase_10 AC 1,056 ms
64,956 KB
testcase_11 AC 1,062 ms
65,360 KB
testcase_12 AC 964 ms
64,636 KB
testcase_13 AC 1,065 ms
64,816 KB
testcase_14 AC 999 ms
64,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        Set<Integer> exist = new HashSet<>();
        int[] counts = new int[30];
        StringBuilder sb = new StringBuilder();
        while (n-- > 0) {
            int type = sc.nextInt();
            if (type == 1) {
                int x = sc.nextInt();
                if (!exist.contains(x)) {
                    exist.add(x);
                    for (int i = 0; i < 30; i++) {
                        if ((x & (1 << i)) > 0) {
                            counts[i]++;
                        }
                    }
                }
            } else if (type == 2) {
                int x = sc.nextInt();
                if (exist.contains(x)) {
                    exist.remove(x);
                    for (int i = 0; i < 30; i++) {
                        if ((x & (1 << i)) > 0) {
                            counts[i]--;
                        }
                    }
                }
            } else {
                int ans = 0;
                for (int i = 0; i < 30; i++) {
                    if (counts[i] == exist.size()) {
                        ans |= (1 << i);
                    }
                }
                sb.append(exist.size() == 0 ? -1 : ans).append("\n");
            }
        }
        System.out.print(sb);
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0