結果

問題 No.2672 Subset Xor Sum
ユーザー tentententen
提出日時 2024-03-19 15:03:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 312 ms / 2,000 ms
コード長 1,843 bytes
コンパイル時間 2,236 ms
コンパイル使用メモリ 79,028 KB
実行使用メモリ 54,132 KB
最終ジャッジ日時 2024-09-30 05:30:35
合計ジャッジ時間 11,875 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,988 KB
testcase_01 AC 50 ms
36,636 KB
testcase_02 AC 74 ms
38,184 KB
testcase_03 AC 54 ms
36,908 KB
testcase_04 AC 56 ms
37,096 KB
testcase_05 AC 59 ms
37,768 KB
testcase_06 AC 57 ms
37,480 KB
testcase_07 AC 57 ms
37,420 KB
testcase_08 AC 59 ms
37,612 KB
testcase_09 AC 59 ms
37,504 KB
testcase_10 AC 68 ms
37,628 KB
testcase_11 AC 61 ms
37,528 KB
testcase_12 AC 71 ms
37,564 KB
testcase_13 AC 60 ms
37,252 KB
testcase_14 AC 58 ms
37,628 KB
testcase_15 AC 65 ms
37,416 KB
testcase_16 AC 61 ms
37,052 KB
testcase_17 AC 59 ms
37,468 KB
testcase_18 AC 58 ms
37,564 KB
testcase_19 AC 62 ms
37,984 KB
testcase_20 AC 61 ms
37,604 KB
testcase_21 AC 61 ms
37,812 KB
testcase_22 AC 51 ms
36,772 KB
testcase_23 AC 52 ms
37,048 KB
testcase_24 AC 54 ms
36,776 KB
testcase_25 AC 53 ms
36,892 KB
testcase_26 AC 79 ms
38,524 KB
testcase_27 AC 78 ms
38,576 KB
testcase_28 AC 79 ms
38,572 KB
testcase_29 AC 75 ms
38,424 KB
testcase_30 AC 58 ms
37,168 KB
testcase_31 AC 305 ms
53,520 KB
testcase_32 AC 231 ms
45,860 KB
testcase_33 AC 201 ms
45,344 KB
testcase_34 AC 266 ms
47,428 KB
testcase_35 AC 289 ms
51,168 KB
testcase_36 AC 275 ms
49,000 KB
testcase_37 AC 291 ms
50,656 KB
testcase_38 AC 228 ms
46,784 KB
testcase_39 AC 312 ms
54,124 KB
testcase_40 AC 192 ms
44,464 KB
testcase_41 AC 262 ms
47,000 KB
testcase_42 AC 286 ms
50,440 KB
testcase_43 AC 268 ms
48,628 KB
testcase_44 AC 298 ms
54,132 KB
testcase_45 AC 259 ms
47,564 KB
testcase_46 AC 87 ms
38,448 KB
testcase_47 AC 113 ms
40,016 KB
testcase_48 AC 92 ms
38,704 KB
testcase_49 AC 93 ms
38,772 KB
testcase_50 AC 90 ms
38,204 KB
testcase_51 AC 105 ms
39,312 KB
testcase_52 AC 98 ms
38,624 KB
testcase_53 AC 105 ms
39,936 KB
testcase_54 AC 89 ms
38,564 KB
testcase_55 AC 111 ms
39,396 KB
testcase_56 AC 92 ms
38,696 KB
testcase_57 AC 83 ms
38,368 KB
testcase_58 AC 65 ms
37,804 KB
testcase_59 AC 57 ms
36,756 KB
testcase_60 AC 86 ms
38,388 KB
testcase_61 AC 64 ms
37,416 KB
testcase_62 AC 97 ms
38,684 KB
testcase_63 AC 87 ms
38,192 KB
testcase_64 AC 105 ms
39,624 KB
testcase_65 AC 93 ms
39,100 KB
testcase_66 AC 49 ms
36,392 KB
testcase_67 AC 50 ms
36,400 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();
        int total = 0;
        int[] values = new int[n];
        for (int i = 0; i < n; i++) {
            values[i] = sc.nextInt();
            total ^= values[i];
        }
        if (total != 0) {
            System.out.println("No");
            return;
        }
        Set<Integer> current = new HashSet<>();
        for (int i = 0; i < n - 1; i++) {
            if (current.contains(values[i])) {
                System.out.println("Yes");
                return;
            }
            Set<Integer> next = new HashSet<>();
            for (int x : current) {
                next.add(x ^ values[i]);
            }
            next.add(values[i]);
            current.addAll(next);
        }
        System.out.println("No");
    }
}
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