結果
問題 | No.1667 Forest |
ユーザー | だれ |
提出日時 | 2021-08-21 04:33:12 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 711 bytes |
コンパイル時間 | 1,252 ms |
コンパイル使用メモリ | 82,400 KB |
実行使用メモリ | 67,204 KB |
最終ジャッジ日時 | 2024-12-15 08:56:55 |
合計ジャッジ時間 | 2,653 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
ソースコード
mod = 998244353 fact = [1] for i in range(1, 301): fact.append(fact[-1] * i % mod) inv = [1] * 301 for i in range(1, 301): inv[i] = pow(fact[i], mod - 2, mod) def binom(a, b): if a < 0 or b < 0 or a < b: return 0 return fact[a] * inv[b] * inv[a - b] % mod c = [0, 0] for i in range(2, 301): c.append(pow(i, i - 2, mod)) n = int(input()) dp = [[0] * n for _ in range(n + 1)] dp[0][0] = 1 for i in range(n): for j in range(i + 1): dp[i + 1][j] += dp[i][j] dp[i + 1][j] %= mod for k in range(2, n - i + 1): dp[i + k][j + k - 1] += dp[i][j] * binom(n - i - 1, k - 1) * c[k] dp[i + k][j + k - 1] %= mod print(*dp[n], sep = "\n")