結果

問題 No.1091 Range Xor Query
ユーザー phsplsphspls
提出日時 2020-06-29 23:06:47
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 286 ms / 2,000 ms
コード長 816 bytes
コンパイル時間 18,687 ms
コンパイル使用メモリ 377,672 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-19 06:05:58
合計ジャッジ時間 19,703 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 20 ms
5,376 KB
testcase_04 AC 164 ms
5,376 KB
testcase_05 AC 153 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 172 ms
5,376 KB
testcase_08 AC 256 ms
5,376 KB
testcase_09 AC 123 ms
5,376 KB
testcase_10 AC 161 ms
5,376 KB
testcase_11 AC 203 ms
5,376 KB
testcase_12 AC 115 ms
5,376 KB
testcase_13 AC 271 ms
5,376 KB
testcase_14 AC 176 ms
5,376 KB
testcase_15 AC 179 ms
5,376 KB
testcase_16 AC 195 ms
5,376 KB
testcase_17 AC 249 ms
5,376 KB
testcase_18 AC 39 ms
5,376 KB
testcase_19 AC 36 ms
5,376 KB
testcase_20 AC 239 ms
5,376 KB
testcase_21 AC 126 ms
5,376 KB
testcase_22 AC 227 ms
5,376 KB
testcase_23 AC 279 ms
5,376 KB
testcase_24 AC 270 ms
5,376 KB
testcase_25 AC 277 ms
5,376 KB
testcase_26 AC 286 ms
5,376 KB
testcase_27 AC 258 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fn main() {
    let mut nq = String::new();
    std::io::stdin().read_line(&mut nq).ok();
    let nq: Vec<usize> = nq.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();
    let n = nq[0];
    let q = nq[1];
    let mut a = String::new();
    std::io::stdin().read_line(&mut a).ok();
    let mut summary: Vec<usize> = vec![0; n+1];
    a.trim().split_whitespace().map(|s| s.parse::<usize>().unwrap()).enumerate().for_each(|pair| {
        summary[pair.0 + 1] = summary[pair.0] ^ pair.1;
    });
    for _ in 0..q {
        let mut lr = String::new();
        std::io::stdin().read_line(&mut lr).ok();
        let lr: Vec<usize> = lr.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();
        let l = lr[0];
        let r = lr[1];
        println!("{}", summary[r] ^ summary[l-1]);
    }
}
0