結果

問題 No.1771 A DELETEQ
ユーザー koba-e964
提出日時 2021-12-09 21:37:47
言語 Rust
(1.83.0 + proconio)
結果
AC  
実行時間 184 ms / 3,500 ms
コード長 1,458 bytes
コンパイル時間 14,805 ms
コンパイル使用メモリ 378,428 KB
実行使用メモリ 127,104 KB
最終ジャッジ日時 2024-07-17 14:32:43
合計ジャッジ時間 26,126 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 27 RE * 4 MLE * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

// https://qiita.com/tanakh/items/0ba42c7ca36cd29d0ac8
macro_rules! input {
    ($($r:tt)*) => {
        let stdin = std::io::stdin();
        let mut bytes = std::io::Read::bytes(std::io::BufReader::new(stdin.lock()));
        let mut next = move || -> String{
            bytes.by_ref().map(|r|r.unwrap() as char)
                .skip_while(|c|c.is_whitespace())
                .take_while(|c|!c.is_whitespace())
                .collect()
        };
        input_inner!{next, $($r)*}
    };
}

macro_rules! input_inner {
    ($next:expr) => {};
    ($next:expr,) => {};
    ($next:expr, $var:ident : $t:tt $($r:tt)*) => {
        let $var = read_value!($next, $t);
        input_inner!{$next $($r)*}
    };
}

macro_rules! read_value {
    ($next:expr, $t:ty) => ($next().parse::<$t>().expect("Parse error"));
}

const MOD: i64 = 998_244_353;

fn main() {
    input!(x: usize, y: usize);
    let mut dp = vec![vec![0; y + 1]; x + 1];
    dp[0][0] = 1;
    for i in 0..x + 1 {
        for j in 0..y + 1 {
            if i + j == 0 { continue; }
            let mut me = 0;
            if i == j {
                me += 1;
            }
            if i > 0 {
                me += dp[i - 1][j];
            }
            if j > 0 {
                me += dp[i][j - 1];
            }
            if i > 0 && j > 0 {
                me += 2 * dp[i - 1][j - 1];
            }
            dp[i][j] = me % MOD;
        }
    }
    println!("{}", dp[x][y]);
}
0