結果

問題 No.1134 Deviation Score Ⅱ
ユーザー
提出日時 2024-06-07 10:34:45
言語 Rust
(1.83.0 + proconio)
結果
WA  
実行時間 -
コード長 431 bytes
コンパイル時間 16,454 ms
コンパイル使用メモリ 379,560 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-25 12:49:32
合計ジャッジ時間 18,163 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 25 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::io::Read;

fn main() {
	let mut s = String::new();
	std::io::stdin().read_to_string(&mut s).ok();
	let mut v: Vec<f64> = s.split_whitespace().flat_map(str::parse).collect();
	let m = v.pop().unwrap() as usize;
	let a = v[1..].iter().sum::<f64>() / v[0];
	let g = (v[1..].iter().map(|x| (x - a).powi(2)).sum::<f64>() / v[0]).sqrt();
	println!(
		"{}",
		(50. + if g == 0. { 0. } else { 10. * (v[m] - a) / g }).floor()
	)
}
0