結果
問題 | No.609 Noelちゃんと星々 |
ユーザー | Masaki Kitaguchi |
提出日時 | 2022-02-03 23:48:09 |
言語 | Rust (1.77.0 + proconio) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,450 bytes |
コンパイル時間 | 13,529 ms |
コンパイル使用メモリ | 378,960 KB |
実行使用メモリ | 14,336 KB |
最終ジャッジ日時 | 2024-06-11 10:01:19 |
合計ジャッジ時間 | 18,892 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
ソースコード
#[macro_export] macro_rules! setup { { mut $input:ident: SplitWhitespace $(,)? } => { use std::io::Read; let mut buf = String::new(); std::io::stdin().read_to_string(&mut buf).ok(); let mut $input = buf.split_whitespace(); }; } #[macro_export] macro_rules! parse_next { ($str_iter:expr) => { $str_iter.next().unwrap().parse().ok().unwrap() }; } #[allow(unused_imports)] use std::collections::{HashMap, HashSet, VecDeque}; fn main() { setup! { mut input: SplitWhitespace }; let n: usize = parse_next!(input); let y: Vec<i64> = (0..n).map(|_| parse_next!(input)).collect(); let mean = (y.iter().sum::<i64>() as f64) / (n as f64); let floor = mean.floor() as i64; let ceil = mean.ceil() as i64; macro_rules! sum { ($criterion:expr) => { y.iter().fold(0, |acc, y_i| acc + (y_i - $criterion).abs()) }; } let ans = (|| { let mut down_min = sum!(floor); for d in 1..i64::MAX { let sum = sum!(floor - d); if sum >= down_min { break; } down_min = sum; } let mut up_min = sum!(ceil); for d in 1..i64::MAX { let sum = sum!(ceil + d); if sum >= up_min { break; } up_min = sum; } std::cmp::min(down_min, up_min) })(); println!("{}", ans); }