結果

問題 No.1507 Road Blocked
ユーザー wolgnikwolgnik
提出日時 2021-05-14 22:26:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 219 ms / 2,000 ms
コード長 718 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 97,024 KB
最終ジャッジ日時 2024-10-02 02:04:13
合計ジャッジ時間 7,765 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 41 ms
51,584 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 115 ms
93,952 KB
testcase_04 AC 187 ms
95,836 KB
testcase_05 AC 180 ms
95,360 KB
testcase_06 AC 184 ms
96,256 KB
testcase_07 AC 179 ms
95,388 KB
testcase_08 AC 180 ms
95,744 KB
testcase_09 AC 179 ms
96,640 KB
testcase_10 AC 207 ms
96,640 KB
testcase_11 AC 207 ms
96,384 KB
testcase_12 AC 180 ms
96,768 KB
testcase_13 AC 179 ms
96,384 KB
testcase_14 AC 180 ms
96,256 KB
testcase_15 AC 188 ms
96,000 KB
testcase_16 AC 194 ms
96,384 KB
testcase_17 AC 181 ms
96,384 KB
testcase_18 AC 182 ms
97,024 KB
testcase_19 AC 182 ms
95,872 KB
testcase_20 AC 179 ms
96,768 KB
testcase_21 AC 186 ms
96,512 KB
testcase_22 AC 181 ms
96,384 KB
testcase_23 AC 182 ms
96,208 KB
testcase_24 AC 182 ms
95,872 KB
testcase_25 AC 180 ms
95,360 KB
testcase_26 AC 187 ms
95,516 KB
testcase_27 AC 181 ms
94,720 KB
testcase_28 AC 219 ms
95,396 KB
testcase_29 AC 178 ms
96,896 KB
testcase_30 AC 189 ms
96,128 KB
testcase_31 AC 185 ms
96,640 KB
testcase_32 AC 180 ms
95,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N = int(input())
e = [[] for _ in range(N + 1)]
for _ in range(N - 1):
  u, v = map(int, input().split())
  e[u].append(v)
  e[v].append(u)

mod = 998244353

s = [1]
vis = [0] * (N + 1)
parent = [0] * (N + 1)
vis[1] = 1
order = []
while len(s):
  x = s.pop()
  order.append(x)
  for y in e[x]:
    if vis[y]: continue
    parent[y] = x
    vis[y] = 1
    s.append(y)

size = [1] * (N + 1)
order.reverse()
for y in order[: -1]:
  x = parent[y]
  size[x] += size[y]

res = 0
for y in range(2, N + 1):
  x = parent[y]
  u = N - size[y]
  d = size[y]
  res += u * d
  res %= mod
  #print(y, u, d)

res *= pow(N * (N - 1) * (N - 1) // 2, mod - 2, mod)
res %= mod
print((1 - res) % mod)
0