結果

問題 No.1456 Range Xor
ユーザー bluemeganebluemegane
提出日時 2021-05-20 16:22:57
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 878 bytes
コンパイル時間 926 ms
コンパイル使用メモリ 105,472 KB
実行使用メモリ 33,024 KB
最終ジャッジ日時 2024-10-10 07:17:01
合計ジャッジ時間 6,126 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
17,792 KB
testcase_01 AC 26 ms
17,664 KB
testcase_02 AC 27 ms
18,048 KB
testcase_03 AC 79 ms
33,024 KB
testcase_04 AC 78 ms
32,896 KB
testcase_05 AC 79 ms
32,896 KB
testcase_06 AC 79 ms
33,024 KB
testcase_07 AC 83 ms
32,896 KB
testcase_08 AC 79 ms
33,024 KB
testcase_09 AC 79 ms
32,896 KB
testcase_10 AC 78 ms
32,896 KB
testcase_11 AC 40 ms
20,864 KB
testcase_12 AC 34 ms
19,584 KB
testcase_13 AC 47 ms
22,272 KB
testcase_14 AC 46 ms
22,400 KB
testcase_15 AC 71 ms
30,976 KB
testcase_16 AC 67 ms
28,544 KB
testcase_17 AC 53 ms
24,576 KB
testcase_18 AC 46 ms
21,888 KB
testcase_19 AC 59 ms
26,624 KB
testcase_20 AC 66 ms
28,416 KB
testcase_21 AC 59 ms
26,112 KB
testcase_22 AC 60 ms
26,752 KB
testcase_23 AC 48 ms
22,784 KB
testcase_24 AC 40 ms
20,208 KB
testcase_25 AC 46 ms
22,016 KB
testcase_26 AC 56 ms
25,216 KB
testcase_27 AC 63 ms
27,904 KB
testcase_28 AC 43 ms
21,248 KB
testcase_29 AC 79 ms
31,744 KB
testcase_30 AC 78 ms
32,512 KB
testcase_31 AC 43 ms
21,120 KB
testcase_32 AC 40 ms
20,864 KB
testcase_33 AC 51 ms
24,064 KB
testcase_34 AC 77 ms
32,256 KB
testcase_35 AC 55 ms
25,216 KB
testcase_36 AC 77 ms
32,768 KB
testcase_37 AC 79 ms
31,488 KB
testcase_38 AC 40 ms
19,968 KB
testcase_39 AC 65 ms
27,904 KB
testcase_40 AC 67 ms
28,160 KB
testcase_41 AC 33 ms
18,688 KB
testcase_42 AC 37 ms
19,904 KB
testcase_43 WA -
testcase_44 AC 30 ms
17,920 KB
testcase_45 AC 27 ms
18,176 KB
testcase_46 AC 28 ms
17,920 KB
testcase_47 WA -
testcase_48 AC 27 ms
18,176 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>();
        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