結果

問題 No.1456 Range Xor
ユーザー tentententen
提出日時 2021-04-13 09:07:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 366 ms / 2,000 ms
コード長 1,528 bytes
コンパイル時間 2,407 ms
コンパイル使用メモリ 78,456 KB
実行使用メモリ 52,380 KB
最終ジャッジ日時 2024-06-29 03:22:11
合計ジャッジ時間 15,279 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,832 KB
testcase_01 AC 52 ms
36,876 KB
testcase_02 AC 53 ms
36,888 KB
testcase_03 AC 320 ms
50,516 KB
testcase_04 AC 295 ms
50,700 KB
testcase_05 AC 321 ms
50,284 KB
testcase_06 AC 312 ms
50,392 KB
testcase_07 AC 366 ms
52,380 KB
testcase_08 AC 357 ms
50,604 KB
testcase_09 AC 326 ms
50,560 KB
testcase_10 AC 325 ms
50,688 KB
testcase_11 AC 174 ms
44,572 KB
testcase_12 AC 129 ms
40,476 KB
testcase_13 AC 213 ms
45,208 KB
testcase_14 AC 210 ms
45,252 KB
testcase_15 AC 285 ms
48,832 KB
testcase_16 AC 280 ms
48,928 KB
testcase_17 AC 256 ms
47,316 KB
testcase_18 AC 196 ms
45,204 KB
testcase_19 AC 256 ms
48,416 KB
testcase_20 AC 269 ms
49,168 KB
testcase_21 AC 252 ms
47,120 KB
testcase_22 AC 249 ms
48,508 KB
testcase_23 AC 213 ms
45,252 KB
testcase_24 AC 157 ms
42,276 KB
testcase_25 AC 200 ms
45,404 KB
testcase_26 AC 249 ms
47,448 KB
testcase_27 AC 251 ms
48,568 KB
testcase_28 AC 181 ms
44,308 KB
testcase_29 AC 354 ms
51,124 KB
testcase_30 AC 303 ms
50,660 KB
testcase_31 AC 166 ms
44,768 KB
testcase_32 AC 159 ms
45,236 KB
testcase_33 AC 227 ms
46,900 KB
testcase_34 AC 305 ms
50,328 KB
testcase_35 AC 228 ms
47,556 KB
testcase_36 AC 309 ms
50,552 KB
testcase_37 AC 315 ms
50,348 KB
testcase_38 AC 157 ms
42,428 KB
testcase_39 AC 265 ms
48,588 KB
testcase_40 AC 277 ms
48,640 KB
testcase_41 AC 88 ms
38,668 KB
testcase_42 AC 134 ms
41,036 KB
testcase_43 AC 50 ms
37,024 KB
testcase_44 AC 50 ms
36,908 KB
testcase_45 AC 54 ms
36,964 KB
testcase_46 AC 52 ms
37,024 KB
testcase_47 AC 52 ms
36,952 KB
testcase_48 AC 51 ms
37,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int k = sc.nextInt();
        int[] arr = new int[n];
        int xor = 0;
        HashMap<Integer, Integer> counts = new HashMap<>();
        for (int i = 0; i < n; i++) {
            arr[i] = sc.nextInt();
            xor ^= arr[i];
            counts.put(xor, counts.getOrDefault(xor, 0) + 1);
        }
        if (counts.containsKey(k)) {
            System.out.println("Yes");
            return;
        }
        xor = 0;
        for (int i = 0; i < n; i++) {
            xor ^= arr[i];
            counts.put(xor, counts.get(xor) - 1);
            if (counts.containsKey(xor ^ k) && counts.get(xor ^ k) > 0) {
                System.out.println("Yes");
                return;
            }
        }
        System.out.println("No");
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0