結果

問題 No.275 中央値を求めよ
ユーザー tonyu0
提出日時 2020-04-29 14:00:03
言語 Rust
(1.83.0 + proconio)
結果
RE  
実行時間 -
コード長 484 bytes
コンパイル時間 13,792 ms
コンパイル使用メモリ 389,216 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-28 08:31:18
合計ジャッジ時間 15,705 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 4 RE * 34
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::io::*;

fn main() {
    let mut s: String = String::new();
    std::io::stdin().read_to_string(&mut s).ok();
    let mut itr = s.trim().split_whitespace();
    let n: usize = itr.next().unwrap().parse().unwrap();
    let mut a: Vec<u64> = (0..n)
        .map(|_| itr.next().unwrap().parse().unwrap())
        .collect();
    a.sort();

    if n % 2 == 0 {
        println!("{}", (a[n / 2 - 1] + a[n / 2]) as f64 / 2.0);
    } else {
        println!("{}", a[n / 2]);
    }
}
0