結果

問題 No.2951 Similar to Mex
ユーザー nouka28nouka28
提出日時 2024-10-21 23:04:09
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 750 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 98,152 KB
最終ジャッジ日時 2024-10-25 20:51:57
合計ジャッジ時間 51,166 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,824 KB
testcase_01 AC 37 ms
53,916 KB
testcase_02 AC 63 ms
67,288 KB
testcase_03 AC 59 ms
68,196 KB
testcase_04 AC 45 ms
60,932 KB
testcase_05 AC 66 ms
69,740 KB
testcase_06 AC 58 ms
67,012 KB
testcase_07 AC 57 ms
66,056 KB
testcase_08 AC 51 ms
64,324 KB
testcase_09 AC 45 ms
60,300 KB
testcase_10 AC 53 ms
65,104 KB
testcase_11 AC 430 ms
77,200 KB
testcase_12 TLE -
testcase_13 AC 1,258 ms
82,304 KB
testcase_14 AC 1,141 ms
82,572 KB
testcase_15 AC 1,984 ms
89,188 KB
testcase_16 AC 787 ms
80,744 KB
testcase_17 AC 1,703 ms
86,988 KB
testcase_18 AC 1,872 ms
87,444 KB
testcase_19 AC 848 ms
80,308 KB
testcase_20 AC 1,315 ms
81,332 KB
testcase_21 AC 1,285 ms
82,348 KB
testcase_22 AC 1,259 ms
84,724 KB
testcase_23 AC 1,431 ms
85,060 KB
testcase_24 AC 1,297 ms
82,156 KB
testcase_25 TLE -
testcase_26 AC 1,241 ms
82,264 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 38 ms
52,936 KB
testcase_37 AC 38 ms
53,012 KB
testcase_38 AC 37 ms
53,500 KB
testcase_39 AC 48 ms
61,980 KB
testcase_40 AC 58 ms
67,804 KB
testcase_41 AC 67 ms
64,164 KB
testcase_42 AC 381 ms
97,956 KB
testcase_43 TLE -
testcase_44 AC 73 ms
68,508 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)]

dp[0][0]=1

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

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[i][T]*S[N][i]%mod*fac[i])%mod

print(ans)
0