結果

問題 No.2951 Similar to Mex
ユーザー nouka28nouka28
提出日時 2024-10-21 23:01:24
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 738 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 300,756 KB
最終ジャッジ日時 2024-10-25 20:51:51
合計ジャッジ時間 30,528 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,872 KB
testcase_01 AC 35 ms
53,280 KB
testcase_02 AC 60 ms
67,680 KB
testcase_03 AC 56 ms
68,544 KB
testcase_04 AC 41 ms
59,936 KB
testcase_05 AC 66 ms
71,972 KB
testcase_06 AC 58 ms
66,560 KB
testcase_07 AC 56 ms
66,896 KB
testcase_08 AC 49 ms
65,156 KB
testcase_09 AC 42 ms
59,884 KB
testcase_10 AC 52 ms
65,448 KB
testcase_11 AC 472 ms
113,128 KB
testcase_12 TLE -
testcase_13 AC 1,330 ms
182,628 KB
testcase_14 AC 1,259 ms
178,344 KB
testcase_15 TLE -
testcase_16 AC 897 ms
157,536 KB
testcase_17 AC 1,781 ms
218,672 KB
testcase_18 TLE -
testcase_19 AC 924 ms
149,956 KB
testcase_20 AC 1,409 ms
182,512 KB
testcase_21 AC 1,392 ms
183,184 KB
testcase_22 AC 1,363 ms
189,928 KB
testcase_23 AC 1,596 ms
211,860 KB
testcase_24 AC 1,406 ms
182,748 KB
testcase_25 TLE -
testcase_26 AC 1,342 ms
181,168 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 AC 34 ms
53,496 KB
testcase_37 AC 34 ms
53,996 KB
testcase_38 AC 34 ms
53,624 KB
testcase_39 AC 42 ms
62,168 KB
testcase_40 AC 55 ms
67,992 KB
testcase_41 AC 62 ms
64,736 KB
testcase_42 AC 695 ms
300,652 KB
testcase_43 TLE -
testcase_44 AC 69 ms
67,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,K=map(int,input().split())

T=max(M,K)+1
mod=998244353

dp=[[[0]*(T+1) for i in range(N+1)]for i in range(T+1)]

dp[0][0][0]=1

for i in range(1,T+1):
    for j in range(N+1):
        for k in range(i):
            if i<=M and j<N:
                dp[i][j+1][k]=(dp[i][j+1][k]+dp[i-1][j][k])%mod
            
            dp[i][j][i]=(dp[i][j][i]+dp[i-1][j][k]*pow(i,max(0,min(i,K)-k),mod))%mod

S=[[0]*(N+1)for i in range(N+1)]
S[0][0]=1
for i in range(N):
    for j in range(i+1):
        S[i+1][j]=(S[i+1][j]+S[i][j]*j)%mod
        S[i+1][j+1]=(S[i+1][j+1]+S[i][j])%mod

fac=[0]*(N+1)
fac[0]=1

for i in range(1,N+1):fac[i]=(i*fac[i-1])%mod

ans=0

for i in range(1,N+1):
    ans=(ans+dp[T][i][T]*S[N][i]%mod*fac[i])%mod

print(ans)
0