結果

問題 No.2024 Xer
ユーザー phspls
提出日時 2022-09-18 00:07:25
言語 Rust
(1.83.0 + proconio)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 797 bytes
コンパイル時間 13,324 ms
コンパイル使用メモリ 384,080 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-22 01:03:38
合計ジャッジ時間 15,964 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 47
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::cmp::Ordering;


fn main() {
    let mut nx = String::new();
    std::io::stdin().read_line(&mut nx).ok();
    let nx: Vec<usize> = nx.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();
    let n = nx[0];
    let x = nx[1];
    let mut a = String::new();
    std::io::stdin().read_line(&mut a).ok();
    let mut a: Vec<usize> = a.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();

    a.sort_by(|&la, &ra| {
        let left = la.min(la ^ x);
        let right = ra.min(ra ^ x);
        if left <= right {
            Ordering::Less
        } else {
            Ordering::Greater
        }
    });
    if (0..n-1).map(|i| a[i] < (a[i+1]^x) && (a[i]^x) < a[i+1]).fold(true, |x, y| x && y) {
        println!("Yes");
    } else {
        println!("No");
    }
}
0