結果

問題 No.1667 Forest
ユーザー 👑 KazunKazun
提出日時 2021-09-04 16:28:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 94 ms / 3,000 ms
コード長 670 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 67,200 KB
最終ジャッジ日時 2024-06-01 03:02:01
合計ジャッジ時間 2,466 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
67,072 KB
testcase_01 AC 90 ms
67,200 KB
testcase_02 AC 91 ms
66,944 KB
testcase_03 AC 51 ms
60,928 KB
testcase_04 AC 94 ms
66,560 KB
testcase_05 AC 77 ms
65,664 KB
testcase_06 AC 67 ms
64,640 KB
testcase_07 AC 60 ms
62,976 KB
testcase_08 AC 61 ms
62,848 KB
testcase_09 AC 53 ms
61,696 KB
testcase_10 AC 54 ms
62,336 KB
testcase_11 AC 47 ms
60,160 KB
testcase_12 AC 40 ms
52,736 KB
testcase_13 AC 40 ms
51,712 KB
testcase_14 AC 41 ms
52,224 KB
testcase_15 AC 40 ms
51,712 KB
testcase_16 AC 40 ms
51,968 KB
testcase_17 AC 40 ms
52,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Mod=map(int,input().split())

X=[]
for i in range(N+1):
    if i==0:
        X.append(0)
    elif i==1:
        X.append(1)
    else:
        X.append(pow(i,i-2,Mod))

Binom=[[0]*(N+1) for _ in range(N+1)]
for n in range(N+1):
    B=Binom[n]
    C=Binom[n-1]
    for r in range(n+1):
        if r==0 or r==n:
            B[r]=1
        else:
            B[r]=(C[r]+C[r-1])%Mod

DP=[[0]*N for _ in range(N+1)]
DP[0][0]=1

for n in range(N):
    B=Binom[N-n-1]
    D=DP[n]
    for k in range(1,N-n+1):
        alpha=(B[k-1]*X[k])%Mod
        E=DP[n+k]
        for m in range(n+1):
            E[m+k-1]+=(D[m]*alpha)%Mod
            E[m+k-1]%=Mod

print(*DP[N],sep="\n")
0