結果

問題 No.2195 AND Set
ユーザー tentententen
提出日時 2023-04-21 08:57:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,291 ms / 2,000 ms
コード長 2,743 bytes
コンパイル時間 3,242 ms
コンパイル使用メモリ 85,616 KB
実行使用メモリ 66,396 KB
最終ジャッジ日時 2024-04-23 23:37:16
合計ジャッジ時間 19,659 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
37,120 KB
testcase_01 AC 54 ms
36,676 KB
testcase_02 AC 973 ms
61,472 KB
testcase_03 AC 1,291 ms
65,152 KB
testcase_04 AC 884 ms
60,824 KB
testcase_05 AC 1,140 ms
62,836 KB
testcase_06 AC 997 ms
62,800 KB
testcase_07 AC 859 ms
60,840 KB
testcase_08 AC 1,068 ms
63,060 KB
testcase_09 AC 707 ms
50,068 KB
testcase_10 AC 1,284 ms
66,396 KB
testcase_11 AC 1,278 ms
66,192 KB
testcase_12 AC 1,279 ms
66,064 KB
testcase_13 AC 1,220 ms
66,236 KB
testcase_14 AC 1,067 ms
65,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int[] counts = new int[30];
        HashSet<Integer> used = new HashSet<>();
        StringBuilder sb = new StringBuilder();
        while (n-- > 0) {
            int type = sc.nextInt();
            if (type == 1) {
                int x = sc.nextInt();
                if (used.contains(x)) {
                    continue;
                }
                used.add(x);
                for (int i = 0; i < 30; i++) {
                    counts[i] += x % 2;
                    x >>= 1;
                }
            } else if (type == 2) {
                int x = sc.nextInt();
                if (!used.contains(x)) {
                    continue;
                }
                used.remove(x);
                for (int i = 0; i < 30; i++) {
                    counts[i] -= x % 2;
                    x >>= 1;
                }
            } else {
                if (used.size() == 0) {
                    sb.append("-1\n");
                    continue;
                }
                int ans = 0;
                for (int i = 0; i < 30; i++) {
                    if (counts[i] == used.size()) {
                        ans += (1 << i);
                    }
                }
                sb.append(ans).append("\n");
            }
        }
        System.out.print(sb);
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0