結果

問題 No.1667 Forest
ユーザー hir355hir355
提出日時 2021-09-03 22:45:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,074 ms / 3,000 ms
コード長 780 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 154,108 KB
最終ジャッジ日時 2024-05-09 05:48:48
合計ジャッジ時間 8,238 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,074 ms
154,108 KB
testcase_01 AC 1,031 ms
152,832 KB
testcase_02 AC 1,010 ms
150,592 KB
testcase_03 AC 83 ms
76,692 KB
testcase_04 AC 1,014 ms
149,132 KB
testcase_05 AC 588 ms
107,776 KB
testcase_06 AC 377 ms
90,868 KB
testcase_07 AC 241 ms
83,336 KB
testcase_08 AC 156 ms
78,808 KB
testcase_09 AC 123 ms
77,452 KB
testcase_10 AC 101 ms
76,708 KB
testcase_11 AC 78 ms
76,508 KB
testcase_12 AC 37 ms
52,224 KB
testcase_13 AC 35 ms
52,224 KB
testcase_14 AC 37 ms
52,736 KB
testcase_15 AC 37 ms
52,480 KB
testcase_16 AC 36 ms
52,608 KB
testcase_17 AC 37 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, MOD = map(int, input().split())
nCr = [[0] * (n + 1) for _ in range(n + 1)]
nCr[0][0] = 1
for i in range(n + 1):
    for j in range(n + 1):
        nCr[i][j] %= MOD
        if i < n:
            nCr[i + 1][j] += nCr[i][j]
            if j < n:
                nCr[i + 1][j + 1] += nCr[i][j]
dp = [[0] * (n + 1) for _ in range(n + 1)]
dp[0][0] = 1
powk = [0] * (n + 1)
powk[1] = 1
for i in range(2, n + 1):
    powk[i] = pow(i, i - 2, MOD)
for i in range(n):
    for j in range(n):
        dp[i][j] %= MOD
        for k in range(1, n + 1 - i):
            if k == 1:
                dp[i + k][j + 1] += dp[i][j] * nCr[n - i - 1][k - 1]
            else:
                dp[i + k][j + 1] += dp[i][j] * nCr[n - i - 1][k - 1] * powk[k]
for x in dp[n][::-1][:-1]:
    print(x % MOD)
0