結果

問題 No.2711 Connecting Lights
ユーザー ntudantuda
提出日時 2024-04-06 13:29:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 59 ms / 5,000 ms
コード長 809 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 82,540 KB
実行使用メモリ 71,708 KB
最終ジャッジ日時 2024-10-01 03:49:26
合計ジャッジ時間 2,725 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,416 KB
testcase_01 AC 35 ms
53,812 KB
testcase_02 AC 37 ms
54,248 KB
testcase_03 AC 36 ms
52,928 KB
testcase_04 AC 37 ms
52,864 KB
testcase_05 AC 47 ms
66,224 KB
testcase_06 AC 42 ms
62,520 KB
testcase_07 AC 47 ms
63,428 KB
testcase_08 AC 54 ms
63,204 KB
testcase_09 AC 55 ms
68,156 KB
testcase_10 AC 50 ms
65,640 KB
testcase_11 AC 55 ms
70,212 KB
testcase_12 AC 56 ms
68,684 KB
testcase_13 AC 58 ms
69,788 KB
testcase_14 AC 49 ms
64,184 KB
testcase_15 AC 52 ms
66,084 KB
testcase_16 AC 49 ms
65,744 KB
testcase_17 AC 49 ms
66,164 KB
testcase_18 AC 50 ms
65,940 KB
testcase_19 AC 53 ms
68,528 KB
testcase_20 AC 59 ms
70,232 KB
testcase_21 AC 49 ms
65,872 KB
testcase_22 AC 46 ms
63,268 KB
testcase_23 AC 48 ms
66,080 KB
testcase_24 AC 51 ms
65,000 KB
testcase_25 AC 52 ms
66,040 KB
testcase_26 AC 57 ms
71,708 KB
testcase_27 AC 55 ms
71,432 KB
testcase_28 AC 56 ms
70,832 KB
testcase_29 AC 57 ms
71,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import comb

MOD = 998244353
N,M,K = map(int,input().split())
X = [[0] * (N+1) for _ in range(N+1)]

for i in range(N+1):
    for j in range(N+1):
        if i < K or j < K:
            continue
        if i + j - N >= K:
            X[i][j] = comb(N,j)
        elif i == K:
            X[i][j] = comb(N-i,j-K)
        elif j == K:
            X[i][j] = comb(i,K)
        else:
            if N - i >= j:
                X[i][j] = comb(N,j) - comb(N-i,j)
            else:
                X[i][j] = comb(N,j) - comb(i,j - K)

dp = [[0] * (N+1) for _ in range(M)]
for i in range(N+1):
    dp[0][i] = comb(N,i)
for i in range(M-1):
    for j in range(N+1):
        for k in range(N+1):
            dp[i+1][k] += dp[i][j] * X[j][k]
            dp[i+1][k] %= MOD
ans = sum(dp[-1])
ans %= MOD
print(ans)
0