結果

問題 No.143 豆
ユーザー Masaki Kitaguchi
提出日時 2022-01-10 19:38:27
言語 Rust
(1.83.0 + proconio)
結果
AC  
実行時間 1 ms / 1,000 ms
コード長 793 bytes
コンパイル時間 11,737 ms
コンパイル使用メモリ 401,680 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-14 11:02:21
合計ジャッジ時間 12,678 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 17
権限があれば一括ダウンロードができます

ソースコード

diff #

#[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).unwrap();
        let mut $input = buf.split_whitespace();
    };
}

#[macro_export]
macro_rules! parse_next {
    ($str_iter:expr) => {
        $str_iter.next().unwrap().parse().unwrap()
    };
}

fn main() {
    setup! { mut input: SplitWhitespace };

    let k: usize = parse_next!(input);
    let n: usize = parse_next!(input);
    let f: usize = parse_next!(input);
    let a: Vec<usize> = (0..f).map(|_| parse_next!(input)).collect();

    match ((k * n) as i64) - (a.iter().sum::<usize>() as i64) {
        x if x >= 0 => println!("{}", x),
        _ => println!("{}", -1),
    }
}
0