結果

問題 No.26 シャッフルゲーム
ユーザー Yuzu MashiroYuzu Mashiro
提出日時 2021-04-06 14:50:43
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 1 ms / 5,000 ms
コード長 1,151 bytes
コンパイル時間 15,387 ms
コンパイル使用メモリ 379,800 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-11 03:41:16
合計ジャッジ時間 16,810 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#[allow(dead_code)]
mod cc {
    pub fn read_line() -> Option<String> {
        let mut buf = String::new();
        let len = std::io::stdin().read_line(&mut buf).ok();
        if let Some(0) = len {
            None
        } else {
            Some(buf.trim().to_string())
        }
    }

    pub fn parse_to<T: std::str::FromStr>(s: String) -> T {
        s.trim().parse().ok().unwrap()
    }

    pub fn drop_line() {
        read_line();
    }
}

fn read_data() -> (u8, Vec<[u8; 2]>) {
    let n: u8 = cc::parse_to(cc::read_line().unwrap());
    cc::drop_line();
    let mut vs: Vec<[u8; 2]> = Vec::new();

    while let Some(_s) = cc::read_line() {
        let _v: Vec<u8> = _s
            .split_ascii_whitespace()
            .map(|e| e.parse().ok().unwrap())
            .collect();
        vs.push([_v[0], _v[1]]);
    }

    (n, vs)
}

fn calc(n: u8, v: Vec<[u8; 2]>) -> u8 {
    let mut now = n;

    for [left, right] in v {
        if now == left {
            now = right;
        } else if now == right {
            now = left;
        }
    }

    now
}

fn main() {
    let (n, v) = read_data();
    println!("{}", calc(n, v));
}
0