結果

問題 No.2980 Planar Tree 2
ユーザー むつあるむつある
提出日時 2024-12-04 01:55:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 408 ms / 2,000 ms
コード長 360 bytes
コンパイル時間 417 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 120,948 KB
最終ジャッジ日時 2024-12-04 01:55:53
合計ジャッジ時間 8,881 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 357 ms
99,468 KB
testcase_01 AC 396 ms
99,324 KB
testcase_02 AC 355 ms
99,324 KB
testcase_03 AC 37 ms
52,692 KB
testcase_04 AC 40 ms
54,000 KB
testcase_05 AC 352 ms
100,208 KB
testcase_06 AC 377 ms
100,088 KB
testcase_07 AC 370 ms
100,072 KB
testcase_08 AC 389 ms
100,264 KB
testcase_09 AC 395 ms
99,648 KB
testcase_10 AC 349 ms
100,112 KB
testcase_11 AC 350 ms
99,852 KB
testcase_12 AC 408 ms
99,968 KB
testcase_13 AC 367 ms
100,204 KB
testcase_14 AC 369 ms
99,984 KB
testcase_15 AC 220 ms
99,748 KB
testcase_16 AC 54 ms
62,860 KB
testcase_17 AC 57 ms
62,620 KB
testcase_18 AC 55 ms
64,644 KB
testcase_19 AC 58 ms
64,360 KB
testcase_20 AC 58 ms
64,388 KB
testcase_21 AC 54 ms
62,912 KB
testcase_22 AC 42 ms
53,760 KB
testcase_23 AC 44 ms
53,992 KB
testcase_24 AC 55 ms
63,468 KB
testcase_25 AC 38 ms
53,352 KB
testcase_26 AC 356 ms
106,440 KB
testcase_27 AC 377 ms
106,548 KB
testcase_28 AC 362 ms
106,876 KB
testcase_29 AC 240 ms
120,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
mod=998244353

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

cnt=[1]*n
dq=[0]
while dq:
  v=dq.pop()
  for i in g[v]:
    if cnt[i]>1:
      continue
    p*=cnt[v]
    p%=mod
    cnt[v]+=1
    cnt[i]+=1
    dq.append(i)

print(p)
0