結果
問題 | No.275 中央値を求めよ |
ユーザー |
|
提出日時 | 2020-04-29 14:00:36 |
言語 | Rust (1.83.0 + proconio) |
結果 |
AC
|
実行時間 | 1 ms / 1,000 ms |
コード長 | 484 bytes |
コンパイル時間 | 14,293 ms |
コンパイル使用メモリ | 379,000 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-28 08:33:45 |
合計ジャッジ時間 | 15,857 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 38 |
ソースコード
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<i64> = (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]); } }