結果

問題 No.1456 Range Xor
ユーザー bluemeganebluemegane
提出日時 2021-05-20 17:26:03
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 75 ms / 2,000 ms
コード長 896 bytes
コンパイル時間 784 ms
コンパイル使用メモリ 113,152 KB
実行使用メモリ 39,224 KB
最終ジャッジ日時 2024-10-10 07:17:36
合計ジャッジ時間 4,882 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
26,272 KB
testcase_01 AC 28 ms
24,240 KB
testcase_02 AC 27 ms
24,368 KB
testcase_03 AC 75 ms
37,176 KB
testcase_04 AC 75 ms
37,452 KB
testcase_05 AC 75 ms
37,192 KB
testcase_06 AC 73 ms
37,324 KB
testcase_07 AC 75 ms
37,320 KB
testcase_08 AC 74 ms
39,104 KB
testcase_09 AC 74 ms
35,160 KB
testcase_10 AC 74 ms
39,224 KB
testcase_11 AC 39 ms
26,128 KB
testcase_12 AC 34 ms
25,104 KB
testcase_13 AC 46 ms
29,196 KB
testcase_14 AC 45 ms
27,184 KB
testcase_15 AC 67 ms
35,888 KB
testcase_16 AC 63 ms
33,720 KB
testcase_17 AC 50 ms
27,060 KB
testcase_18 AC 43 ms
26,900 KB
testcase_19 AC 57 ms
31,956 KB
testcase_20 AC 63 ms
35,660 KB
testcase_21 AC 56 ms
34,168 KB
testcase_22 AC 57 ms
34,368 KB
testcase_23 AC 46 ms
25,264 KB
testcase_24 AC 37 ms
23,924 KB
testcase_25 AC 44 ms
26,968 KB
testcase_26 AC 52 ms
29,328 KB
testcase_27 AC 59 ms
33,028 KB
testcase_28 AC 41 ms
28,800 KB
testcase_29 AC 72 ms
36,284 KB
testcase_30 AC 72 ms
38,884 KB
testcase_31 AC 41 ms
26,668 KB
testcase_32 AC 41 ms
26,256 KB
testcase_33 AC 49 ms
28,592 KB
testcase_34 AC 71 ms
38,900 KB
testcase_35 AC 53 ms
31,292 KB
testcase_36 AC 73 ms
36,896 KB
testcase_37 AC 71 ms
37,380 KB
testcase_38 AC 37 ms
25,692 KB
testcase_39 AC 61 ms
31,388 KB
testcase_40 AC 63 ms
31,340 KB
testcase_41 AC 31 ms
24,592 KB
testcase_42 AC 35 ms
25,808 KB
testcase_43 AC 27 ms
24,492 KB
testcase_44 AC 29 ms
26,148 KB
testcase_45 AC 26 ms
21,940 KB
testcase_46 AC 27 ms
24,336 KB
testcase_47 AC 26 ms
22,196 KB
testcase_48 AC 26 ms
24,208 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System.Collections.Generic;
using System;

public class Hello
{
    static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        var n = int.Parse(line[0]);
        var k = int.Parse(line[1]);
        line = Console.ReadLine().Trim().Split(' ');
        var a = Array.ConvertAll(line, int.Parse);
        var d = new Dictionary<int, int>();
        d[0] = 0;
        var b = new int[n];
        b[0] = a[0];
        d[b[0]] = 0;
        for (int i = 1; i < n; i++)
        {
            b[i] = b[i - 1] ^ a[i];
            d[b[i]] = i;
        }
        getAns(n, k, b, d);

    }
    static void getAns(int n, int k, int[] b, Dictionary<int, int> d)
    {
        for (int i = 0; i < n; i++)
        {
            var w = b[i] ^ k;
            if (d.ContainsKey(w)) { Console.WriteLine("Yes"); return; }
        }
        Console.WriteLine("No");
    }
}
0