結果

問題 No.1507 Road Blocked
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-05-14 22:33:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 321 ms / 2,000 ms
コード長 589 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 177,024 KB
最終ジャッジ日時 2024-10-02 02:22:08
合計ジャッジ時間 11,183 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 41 ms
52,224 KB
testcase_02 AC 41 ms
52,096 KB
testcase_03 AC 308 ms
177,024 KB
testcase_04 AC 320 ms
88,968 KB
testcase_05 AC 319 ms
88,960 KB
testcase_06 AC 307 ms
89,352 KB
testcase_07 AC 312 ms
89,232 KB
testcase_08 AC 310 ms
89,472 KB
testcase_09 AC 317 ms
88,656 KB
testcase_10 AC 319 ms
88,960 KB
testcase_11 AC 319 ms
89,160 KB
testcase_12 AC 309 ms
89,196 KB
testcase_13 AC 306 ms
88,996 KB
testcase_14 AC 319 ms
89,428 KB
testcase_15 AC 314 ms
89,216 KB
testcase_16 AC 317 ms
89,184 KB
testcase_17 AC 317 ms
89,308 KB
testcase_18 AC 316 ms
88,932 KB
testcase_19 AC 319 ms
89,320 KB
testcase_20 AC 314 ms
88,932 KB
testcase_21 AC 309 ms
88,888 KB
testcase_22 AC 313 ms
89,156 KB
testcase_23 AC 314 ms
89,472 KB
testcase_24 AC 312 ms
89,216 KB
testcase_25 AC 320 ms
89,224 KB
testcase_26 AC 321 ms
88,960 KB
testcase_27 AC 307 ms
89,472 KB
testcase_28 AC 312 ms
89,344 KB
testcase_29 AC 306 ms
88,960 KB
testcase_30 AC 310 ms
88,960 KB
testcase_31 AC 319 ms
89,448 KB
testcase_32 AC 299 ms
89,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(2*10**5)
n = int(input())
e = [[] for i in range(n)]
for i in range(n-1):
    a,b = map(int,input().split())
    a -= 1
    b -= 1
    e[a].append(b)
    e[b].append(a)

mod = 998244353
count = [0]*n
def dfs(x,p=-1):
    c = 1
    for nex in e[x]:
        if nex == p:
            continue
        c += dfs(nex,x)
    count[x] = c
    return c

dfs(0,-1)
all = n*(n-1)//2*(n-1)
ans = all
for i in range(n):
    for j in e[i]:
        if count[j] > count[i]:
            continue
        ans -= count[j]*(n-count[j])

m = pow(all,mod-2,mod)
print(ans*m%mod)
0