結果

問題 No.959 tree and fire
ユーザー Masaki KitaguchiMasaki Kitaguchi
提出日時 2022-01-23 18:02:36
言語 Rust
(1.83.0 + proconio)
結果
TLE  
実行時間 -
コード長 2,012 bytes
コンパイル時間 10,856 ms
コンパイル使用メモリ 396,332 KB
実行使用メモリ 15,688 KB
最終ジャッジ日時 2024-11-29 21:14:37
合計ジャッジ時間 128,568 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
8,612 KB
testcase_01 AC 1,590 ms
8,612 KB
testcase_02 AC 1,576 ms
13,768 KB
testcase_03 TLE -
testcase_04 AC 1 ms
8,608 KB
testcase_05 AC 1 ms
8,612 KB
testcase_06 AC 1 ms
13,764 KB
testcase_07 AC 0 ms
8,740 KB
testcase_08 AC 1 ms
13,764 KB
testcase_09 AC 1 ms
8,736 KB
testcase_10 AC 1 ms
8,736 KB
testcase_11 AC 1 ms
8,616 KB
testcase_12 AC 0 ms
13,764 KB
testcase_13 AC 1 ms
8,608 KB
testcase_14 AC 1,211 ms
8,608 KB
testcase_15 AC 1,332 ms
8,744 KB
testcase_16 AC 807 ms
13,764 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 624 ms
13,760 KB
testcase_21 AC 1,204 ms
8,608 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 AC 1 ms
6,816 KB
testcase_55 AC 1 ms
6,816 KB
testcase_56 AC 1 ms
15,556 KB
権限があれば一括ダウンロードができます

ソースコード

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

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

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

    let n: usize = parse_next!(input);
    let m: usize = parse_next!(input);
    let p: f64 = parse_next!(input);

    let ans = (|| {
        let mut e = 0.0;
        match (n, m) {
            (1, 1) => {
                e += p;
            }
            (1, _) => {
                for j in 0..m {
                    if j == 0 || j == (m - 1) {
                        e += p * p;
                    } else {
                        e += p * (p * p);
                    }
                }
            }
            (_, 1) => {
                for i in 0..n {
                    if i == 0 || i == (n - 1) {
                        e += p * p;
                    } else {
                        e += p * (p * p);
                    }
                }
            }
            (_, _) => {
                for i in 0..n {
                    for j in 0..m {
                        if i == 0 || i == (n - 1) {
                            if j == 0 || j == (m - 1) {
                                e += p * (p * p);
                            } else {
                                e += p * (p * p * p);
                            }
                        } else {
                            if j == 0 || j == (m - 1) {
                                e += p * (p * p * p);
                            } else {
                                e += p * (p * p * p * p);
                            }
                        }
                    }
                }
            }
        }
        e
    })();

    println!("{}", ans);
}
0