結果

問題 No.1091 Range Xor Query
ユーザー bluemeganebluemegane
提出日時 2020-06-24 17:13:03
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 275 ms / 2,000 ms
コード長 907 bytes
コンパイル時間 769 ms
コンパイル使用メモリ 110,388 KB
実行使用メモリ 39,040 KB
最終ジャッジ日時 2024-07-03 20:11:20
合計ジャッジ時間 8,284 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
17,792 KB
testcase_01 AC 24 ms
17,792 KB
testcase_02 AC 23 ms
18,048 KB
testcase_03 AC 80 ms
32,000 KB
testcase_04 AC 160 ms
27,392 KB
testcase_05 AC 205 ms
37,376 KB
testcase_06 AC 35 ms
20,736 KB
testcase_07 AC 182 ms
32,896 KB
testcase_08 AC 243 ms
36,224 KB
testcase_09 AC 128 ms
27,264 KB
testcase_10 AC 184 ms
36,736 KB
testcase_11 AC 221 ms
39,040 KB
testcase_12 AC 163 ms
37,376 KB
testcase_13 AC 251 ms
35,584 KB
testcase_14 AC 199 ms
36,864 KB
testcase_15 AC 211 ms
37,504 KB
testcase_16 AC 188 ms
28,928 KB
testcase_17 AC 257 ms
37,248 KB
testcase_18 AC 60 ms
24,448 KB
testcase_19 AC 85 ms
31,488 KB
testcase_20 AC 232 ms
35,072 KB
testcase_21 AC 124 ms
25,984 KB
testcase_22 AC 240 ms
38,528 KB
testcase_23 AC 255 ms
38,144 KB
testcase_24 AC 256 ms
37,888 KB
testcase_25 AC 269 ms
38,272 KB
testcase_26 AC 266 ms
38,144 KB
testcase_27 AC 275 ms
38,016 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System.Text;
using System;

public class Hello
{
    static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        var n = int.Parse(line[0]);
        var q = int.Parse(line[1]);
        line = Console.ReadLine().Trim().Split(' ');
        var a = Array.ConvertAll(line, int.Parse);
        getAns(n, q, a);
    }
    static void getAns(int n, int q, int[] a)
    {
        var sb = new StringBuilder();
        var b = new int[n];
        b[0] = 0 ^ a[0];
        for (int i = 1; i < n; i++)
            b[i] = b[i - 1] ^ a[i];
        for (int i = 0; i < q; i++)
        {
            string[] line = Console.ReadLine().Trim().Split(' ');
            var L = int.Parse(line[0]) - 1;
            var r = int.Parse(line[1]) - 1;
            sb.Append(L == 0 ? b[r].ToString() + "\n" : (b[r] ^ b[L - 1]).ToString() + "\n");
        }
        Console.Write(sb);
    }
}
0