結果
問題 | No.1667 Forest |
ユーザー | titia |
提出日時 | 2021-09-04 03:29:48 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 810 bytes |
コンパイル時間 | 354 ms |
コンパイル使用メモリ | 82,496 KB |
実行使用メモリ | 112,600 KB |
最終ジャッジ日時 | 2024-05-09 13:35:24 |
合計ジャッジ時間 | 21,662 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 70 ms
89,088 KB |
testcase_13 | AC | 71 ms
89,232 KB |
testcase_14 | WA | - |
testcase_15 | AC | 73 ms
88,960 KB |
testcase_16 | AC | 73 ms
88,832 KB |
testcase_17 | AC | 71 ms
89,344 KB |
ソースコード
import sys input = sys.stdin.readline N,mod=map(int,input().split()) FACT=[1] for i in range(1,2*10**5+1): FACT.append(FACT[-1]*i%mod) FACT_INV=[pow(FACT[-1],mod-2,mod)] for i in range(2*10**5,0,-1): FACT_INV.append(FACT_INV[-1]*i%mod) FACT_INV.reverse() def Combi(a,b): if 0<=b<=a: return FACT[a]*FACT_INV[b]%mod*FACT_INV[a-b]%mod else: return 0 DP=[[0]*(N+1) for i in range(N+1)] # DP[i][j]でi頂点j辺のものの場合の数 DP[0][0]=1 for i in range(N+1): for j in range(N+1): if i+1<=N: DP[i+1][j]+=DP[i][j] for k in range(2,310): if i+k>N or j+k-1>N: continue DP[i+k][j+k-1]+=DP[i][j]*Combi(N-i-1,k-1)*pow(k,k-2,mod) DP[i+k][j+k-1]%=mod for i in range(N): print(DP[N][i])