結果

問題 No.1091 Range Xor Query
ユーザー kokatsukokatsu
提出日時 2021-11-19 00:17:21
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 185 ms / 2,000 ms
コード長 317 bytes
コンパイル時間 2,565 ms
コンパイル使用メモリ 209,364 KB
実行使用メモリ 13,596 KB
最終ジャッジ日時 2024-06-22 13:18:49
合計ジャッジ時間 9,509 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 29 ms
6,940 KB
testcase_04 AC 104 ms
6,940 KB
testcase_05 AC 124 ms
10,276 KB
testcase_06 AC 7 ms
6,944 KB
testcase_07 AC 119 ms
6,940 KB
testcase_08 AC 171 ms
6,944 KB
testcase_09 AC 80 ms
6,944 KB
testcase_10 AC 120 ms
7,476 KB
testcase_11 AC 156 ms
9,968 KB
testcase_12 AC 94 ms
9,600 KB
testcase_13 AC 180 ms
6,940 KB
testcase_14 AC 130 ms
9,500 KB
testcase_15 AC 141 ms
10,052 KB
testcase_16 AC 129 ms
6,940 KB
testcase_17 AC 185 ms
9,192 KB
testcase_18 AC 28 ms
6,944 KB
testcase_19 AC 38 ms
6,940 KB
testcase_20 AC 171 ms
6,944 KB
testcase_21 AC 79 ms
6,940 KB
testcase_22 AC 165 ms
7,888 KB
testcase_23 AC 179 ms
13,508 KB
testcase_24 AC 179 ms
13,596 KB
testcase_25 AC 180 ms
13,520 KB
testcase_26 AC 179 ms
13,432 KB
testcase_27 AC 181 ms
13,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

void main() {
    int N, Q;
    readf("%d %d\n", N, Q);

    auto a = [0] ~ readln.chomp.split.to!(int[]);

    auto b = a.cumulativeFold!"a ^ b".array;

    foreach (i; 0 .. Q) {
        int l, r;
        readf("%d %d\n", l, r);

        --l;

        int res = b[r] ^ b[l];
        res.writeln;
    }
}
0