結果
問題 | No.2980 Planar Tree 2 |
ユーザー |
![]() |
提出日時 | 2024-12-04 01:52:28 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 414 ms / 2,000 ms |
コード長 | 447 bytes |
コンパイル時間 | 316 ms |
コンパイル使用メモリ | 81,988 KB |
実行使用メモリ | 122,576 KB |
最終ジャッジ日時 | 2024-12-04 01:52:39 |
合計ジャッジ時間 | 9,711 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 30 |
ソースコード
n=int(input())mod=998244353g=[[] for _ in range(n)]for _ in range(n-1):u,v=map(int,input().split())u-=1v-=1g[u].append(v)g[v].append(u)check=[0]*ncnt=[1]*nans=1dq=[0]check[0]=1while dq:v=dq.pop()for i in g[v]:if check[i]:continueans*=cnt[v]cnt[v]+=1cnt[i]+=1dq.append(i)check[i]=1ans%=modp=1for i in range(1,n):p*=ip%=modprint(ans*pow(p,-1,mod)%mod)