結果

問題 No.1507 Road Blocked
ユーザー GER_chenGER_chen
提出日時 2021-05-14 22:44:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 354 ms / 2,000 ms
コード長 640 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 112,384 KB
最終ジャッジ日時 2024-10-02 03:03:41
合計ジャッジ時間 11,548 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,900 KB
testcase_01 AC 37 ms
51,888 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 AC 187 ms
109,672 KB
testcase_04 AC 321 ms
111,640 KB
testcase_05 AC 319 ms
111,444 KB
testcase_06 AC 323 ms
111,700 KB
testcase_07 AC 340 ms
111,904 KB
testcase_08 AC 317 ms
111,632 KB
testcase_09 AC 327 ms
111,916 KB
testcase_10 AC 323 ms
112,312 KB
testcase_11 AC 332 ms
111,920 KB
testcase_12 AC 323 ms
112,384 KB
testcase_13 AC 343 ms
111,388 KB
testcase_14 AC 324 ms
112,052 KB
testcase_15 AC 330 ms
111,620 KB
testcase_16 AC 319 ms
112,384 KB
testcase_17 AC 325 ms
112,060 KB
testcase_18 AC 338 ms
111,732 KB
testcase_19 AC 332 ms
111,552 KB
testcase_20 AC 342 ms
112,096 KB
testcase_21 AC 340 ms
112,112 KB
testcase_22 AC 330 ms
112,012 KB
testcase_23 AC 335 ms
111,852 KB
testcase_24 AC 332 ms
111,568 KB
testcase_25 AC 328 ms
111,640 KB
testcase_26 AC 327 ms
111,872 KB
testcase_27 AC 324 ms
111,564 KB
testcase_28 AC 331 ms
111,700 KB
testcase_29 AC 341 ms
111,708 KB
testcase_30 AC 329 ms
111,692 KB
testcase_31 AC 331 ms
112,196 KB
testcase_32 AC 354 ms
111,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
n = int(input())
Adj = [set() for _ in range(n)]
for _ in range(n-1):
    u, v = map(int, input().split())
    Adj[u-1].add(v-1)
    Adj[v-1].add(u-1)
Parent = [-1]*n
Size = [0]*n
D = [0]
Sort = []
while D:
    v = D.pop()
    Sort.append(v)
    for nxt in Adj[v]:
        if nxt != Parent[v]:
            Parent[nxt] = v
            D.append(nxt)

for i in Sort[::-1]:
    Size[i] += 1
    for child in Adj[i]:
        if child != Parent[i]:
            Size[i] += Size[child]

ans = 0
cff = pow((n*(n-1)**2)//2, mod-2, mod)
for i in range(1, n):
    s = Size[i]
    ans += s*(n-s)
    ans %= mod
print((mod+1-ans*cff)%mod)
0