結果

問題 No.2980 Planar Tree 2
ユーザー むつあるむつある
提出日時 2024-12-04 02:00:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 241 ms / 2,000 ms
コード長 215 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 78,080 KB
最終ジャッジ日時 2024-12-04 02:01:02
合計ジャッジ時間 6,517 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 208 ms
77,696 KB
testcase_01 AC 211 ms
77,568 KB
testcase_02 AC 205 ms
77,696 KB
testcase_03 AC 42 ms
51,712 KB
testcase_04 AC 42 ms
51,968 KB
testcase_05 AC 212 ms
77,696 KB
testcase_06 AC 204 ms
77,952 KB
testcase_07 AC 201 ms
77,696 KB
testcase_08 AC 211 ms
77,696 KB
testcase_09 AC 202 ms
77,440 KB
testcase_10 AC 203 ms
77,952 KB
testcase_11 AC 206 ms
77,696 KB
testcase_12 AC 205 ms
77,696 KB
testcase_13 AC 213 ms
77,824 KB
testcase_14 AC 207 ms
78,080 KB
testcase_15 AC 175 ms
77,440 KB
testcase_16 AC 57 ms
61,312 KB
testcase_17 AC 60 ms
61,824 KB
testcase_18 AC 58 ms
61,568 KB
testcase_19 AC 63 ms
62,976 KB
testcase_20 AC 64 ms
63,360 KB
testcase_21 AC 64 ms
62,208 KB
testcase_22 AC 50 ms
52,992 KB
testcase_23 AC 49 ms
53,632 KB
testcase_24 AC 62 ms
62,464 KB
testcase_25 AC 44 ms
51,584 KB
testcase_26 AC 241 ms
77,952 KB
testcase_27 AC 204 ms
77,440 KB
testcase_28 AC 210 ms
77,696 KB
testcase_29 AC 173 ms
77,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
mod=998244353

c=[0]*n
p=1
for i in range(1,n):
  u,v=map(int,input().split())
  c[u-1]+=1
  c[v-1]+=1
  p*=i
  p%=mod
p=pow(p,-1,mod)

for v in c:
  for i in range(v):
    p*=i+1
    p%=mod

print(p)
0