結果

問題 No.490 yukiソート
ユーザー tanzakutanzaku
提出日時 2017-03-10 22:31:41
言語 Rust
(1.83.0 + proconio)
結果
WA  
実行時間 -
コード長 2,035 bytes
コンパイル時間 12,639 ms
コンパイル使用メモリ 384,776 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-24 10:00:09
合計ジャッジ時間 14,003 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 13 WA * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

#[allow(dead_code)]
fn get_line() -> Vec<String> {
    let stdin = std::io::stdin();
    let mut s = String::new();
    loop {
        stdin.read_line(&mut s).ok();
        let s = s.trim();
        if s.len() != 0 {
            return s.split_whitespace().map(|s| s.into()).collect();
        }
    }
}

#[allow(dead_code)]
fn read_array<T>() -> Vec<T> where
    T: std::str::FromStr + std::marker::Copy,
    <T as std::str::FromStr>::Err: std::fmt::Debug
{
    get_line().iter().map(|s| s.parse().unwrap()).collect()
}

#[allow(dead_code)]
fn read2<T, U>() -> (T, U) where
    T: std::str::FromStr + std::marker::Copy,
    <T as std::str::FromStr>::Err: std::fmt::Debug,
    U: std::str::FromStr + std::marker::Copy,
    <U as std::str::FromStr>::Err: std::fmt::Debug
{
    let ary = get_line();
    (ary[0].parse().unwrap(), ary[1].parse().unwrap())
}

#[allow(dead_code)]
fn read3<T, U, W>() -> (T, U, W) where
    T: std::str::FromStr + std::marker::Copy,
    <T as std::str::FromStr>::Err: std::fmt::Debug,
    U: std::str::FromStr + std::marker::Copy,
    <U as std::str::FromStr>::Err: std::fmt::Debug,
    W: std::str::FromStr + std::marker::Copy,
    <W as std::str::FromStr>::Err: std::fmt::Debug
{
    let ary = get_line();
    (ary[0].parse().unwrap(), ary[1].parse().unwrap(), ary[2].parse().unwrap())
}

#[allow(dead_code)]
fn read1<T>() -> T where
    T: std::str::FromStr + std::marker::Copy,
    <T as std::str::FromStr>::Err: std::fmt::Debug
{
    read_array()[0]
}

fn main() {
    let n = read1();
    let mut a: Vec<i32> = read_array();

    // for i in 0..(2*n-2) {
    //     for j in 0..n {
    //         if i < j { break; }
    //         if j > i-j && a[i-j] > a[j] {
    //             let x = a[j];
    //             a[j] = a[i-j];
    //             a[i-j] = x;
    //             // std::mem::swap(&mut a[j], &mut a[i-j]);
    //         }
    //     }
    // }
    a.sort();

    for i in 0..n {
        print!("{}", a[i]);
        if i == n-1 { println!(""); }
        else { print!(" "); }
    }
}
0