結果

問題 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 365 ms
101,248 KB
testcase_01 AC 378 ms
101,360 KB
testcase_02 AC 414 ms
101,244 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 37 ms
52,096 KB
testcase_05 AC 378 ms
102,124 KB
testcase_06 AC 376 ms
102,196 KB
testcase_07 AC 405 ms
101,652 KB
testcase_08 AC 394 ms
102,144 KB
testcase_09 AC 375 ms
101,632 KB
testcase_10 AC 396 ms
101,504 KB
testcase_11 AC 376 ms
101,632 KB
testcase_12 AC 364 ms
101,448 KB
testcase_13 AC 409 ms
101,504 KB
testcase_14 AC 373 ms
101,504 KB
testcase_15 AC 213 ms
100,864 KB
testcase_16 AC 52 ms
61,824 KB
testcase_17 AC 55 ms
62,336 KB
testcase_18 AC 60 ms
63,232 KB
testcase_19 AC 64 ms
65,152 KB
testcase_20 AC 65 ms
64,128 KB
testcase_21 AC 62 ms
62,720 KB
testcase_22 AC 46 ms
53,888 KB
testcase_23 AC 43 ms
53,888 KB
testcase_24 AC 55 ms
63,104 KB
testcase_25 AC 38 ms
52,480 KB
testcase_26 AC 390 ms
108,684 KB
testcase_27 AC 356 ms
108,800 KB
testcase_28 AC 376 ms
108,276 KB
testcase_29 AC 241 ms
122,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
mod=998244353

g=[[] for _ in range(n)]

for _ in range(n-1):
  u,v=map(int,input().split())
  u-=1
  v-=1
  g[u].append(v)
  g[v].append(u)
  
check=[0]*n
cnt=[1]*n
ans=1
  
dq=[0]
check[0]=1

while dq:
  v=dq.pop()
  for i in g[v]:
    if check[i]:
      continue
    ans*=cnt[v]
    cnt[v]+=1
    cnt[i]+=1
    dq.append(i)
    check[i]=1
    ans%=mod
    
p=1
for i in range(1,n):
  p*=i
  p%=mod
  
print(ans*pow(p,-1,mod)%mod)
0