結果

問題 No.1507 Road Blocked
ユーザー AAAR SalmonAAAR Salmon
提出日時 2021-05-15 01:10:45
言語 PyPy3
(7.3.15)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 876 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 473,408 KB
最終ジャッジ日時 2024-10-02 07:59:24
合計ジャッジ時間 19,980 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,632 KB
testcase_01 AC 43 ms
53,504 KB
testcase_02 AC 42 ms
53,632 KB
testcase_03 RE -
testcase_04 AC 640 ms
108,032 KB
testcase_05 AC 638 ms
106,496 KB
testcase_06 AC 646 ms
108,096 KB
testcase_07 AC 703 ms
109,952 KB
testcase_08 AC 619 ms
106,880 KB
testcase_09 AC 620 ms
107,520 KB
testcase_10 AC 404 ms
99,712 KB
testcase_11 AC 580 ms
103,808 KB
testcase_12 AC 412 ms
99,584 KB
testcase_13 AC 638 ms
105,856 KB
testcase_14 AC 620 ms
106,880 KB
testcase_15 AC 699 ms
110,080 KB
testcase_16 AC 689 ms
106,756 KB
testcase_17 AC 512 ms
102,016 KB
testcase_18 AC 385 ms
98,560 KB
testcase_19 AC 626 ms
106,496 KB
testcase_20 AC 597 ms
104,832 KB
testcase_21 AC 663 ms
105,856 KB
testcase_22 AC 438 ms
100,988 KB
testcase_23 AC 518 ms
102,784 KB
testcase_24 AC 376 ms
97,920 KB
testcase_25 AC 680 ms
106,752 KB
testcase_26 AC 367 ms
98,688 KB
testcase_27 AC 640 ms
105,472 KB
testcase_28 AC 637 ms
107,008 KB
testcase_29 AC 801 ms
108,672 KB
testcase_30 AC 393 ms
99,328 KB
testcase_31 AC 385 ms
99,304 KB
testcase_32 AC 627 ms
105,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
from sys import stderr, setrecursionlimit

setrecursionlimit(200000)

MOD = 998244353

N = int(input())
edges = [[] for _ in range(N + 1)]
for _ in range(N - 1):
	u, v = map(int, input().split())
	edges[u].append(v)
	edges[v].append(u)

parent = [-1] * (N + 1)
parent[1] = 0
children = [[] for _ in range(N + 1)]
q = deque([1])
while q:
	p = q.popleft()
	for n in edges[p]:
		if parent[n] != -1:
			continue
		parent[n] = p
		children[p].append(n)
		q.append(n)

descendant = [0] * (N + 1)


def bfs(n):
	if not children[n]:
		descendant[n] = 1
		return 1
	descendant[n] = sum(bfs(c) for c in children[n]) + 1
	return descendant[n]


bfs(1)

# print(descendant, file=stderr)

# ans = a / b
a = N * (N - 1)**2 // 2
b = N * (N - 1)**2 // 2

for n in range(2, N + 1):
	a -= descendant[n] * (N - descendant[n])

print(a * pow(b, MOD - 2, MOD) % MOD)
0