結果

問題 No.1754 T-block Tiling
ユーザー Masaki KitaguchiMasaki Kitaguchi
提出日時 2022-01-07 21:14:06
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 768 bytes
コンパイル時間 14,719 ms
コンパイル使用メモリ 386,160 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-14 08:18:31
合計ジャッジ時間 15,506 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 1 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fn main() {
    let mut buf = String::new();
    let mut input = {
        use std::io::Read;
        std::io::stdin().read_to_string(&mut buf).unwrap();
        buf.split_whitespace()
    };

    const MOD: usize = 998244353;

    let t: usize = input.next().unwrap().parse().unwrap();
    let ns: Vec<usize> = (0..t)
        .map(|_| input.next().unwrap().parse().unwrap())
        .collect();

    let n_max = ns.iter().fold(1, |acc, &n| if n > acc { n } else { acc });

    let mut w = vec![];
    for k in 0..=n_max {
        match k {
            0 => w.push(0),
            1 => w.push(2),
            2 => w.push(6),
            _ => w.push((w[k - 1] * 2 + w[k - 1]) % MOD),
        }
    }

    for n in ns.into_iter() {
        println!("{}", w[n]);
    }
}
0