結果

問題 No.1492 01文字列と転倒
ユーザー Yukino DX.Yukino DX.
提出日時 2024-09-28 10:03:49
言語 Rust
(1.77.0 + proconio)
結果
MLE  
実行時間 -
コード長 693 bytes
コンパイル時間 18,422 ms
コンパイル使用メモリ 388,560 KB
実行使用メモリ 799,360 KB
最終ジャッジ日時 2024-09-28 10:04:24
合計ジャッジ時間 32,240 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 MLE -
testcase_03 MLE -
testcase_04 MLE -
testcase_05 MLE -
testcase_06 MLE -
testcase_07 MLE -
testcase_08 MLE -
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 1 ms
6,944 KB
testcase_14 MLE -
testcase_15 AC 3 ms
6,940 KB
testcase_16 AC 27 ms
12,928 KB
testcase_17 MLE -
testcase_18 AC 30 ms
14,336 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 19 ms
9,600 KB
testcase_21 AC 1,104 ms
481,408 KB
testcase_22 AC 27 ms
12,928 KB
testcase_23 AC 11 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use proconio::input;

fn main() {
    input! {
        n:usize,
        m:usize,
    }

    let mut dp = vec![vec![vec![0; n * n + 1]; n + 1]; n + 1];
    for i in 0..=n {
        dp[0][i][0] = 1;
    }
    for i in 1..=n {
        for j in 0..=n {
            for k in 0..=n * n {
                if 0 < j {
                    dp[i][j][k] = dp[i][j][k] + dp[i][j - 1][k];
                    dp[i][j][k] %= m;
                }
                if j < i && j <= k {
                    dp[i][j][k] = dp[i][j][k] + dp[i - 1][j][k - j];
                    dp[i][j][k] %= m;
                }
            }
        }
    }

    for i in 0..=n * n {
        println!("{}", dp[n][n][i]);
    }
}
0