結果

問題 No.1507 Road Blocked
ユーザー convexineqconvexineq
提出日時 2021-05-14 22:39:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 233 ms / 2,000 ms
コード長 558 bytes
コンパイル時間 389 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 96,256 KB
最終ジャッジ日時 2024-10-02 02:39:13
合計ジャッジ時間 7,803 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,224 KB
testcase_01 AC 41 ms
52,224 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 150 ms
95,256 KB
testcase_04 AC 224 ms
96,256 KB
testcase_05 AC 208 ms
96,008 KB
testcase_06 AC 211 ms
95,768 KB
testcase_07 AC 217 ms
96,072 KB
testcase_08 AC 218 ms
95,848 KB
testcase_09 AC 209 ms
96,000 KB
testcase_10 AC 209 ms
96,000 KB
testcase_11 AC 211 ms
95,688 KB
testcase_12 AC 215 ms
95,528 KB
testcase_13 AC 222 ms
96,128 KB
testcase_14 AC 203 ms
96,064 KB
testcase_15 AC 196 ms
95,844 KB
testcase_16 AC 199 ms
95,828 KB
testcase_17 AC 227 ms
96,064 KB
testcase_18 AC 233 ms
96,108 KB
testcase_19 AC 201 ms
96,048 KB
testcase_20 AC 200 ms
96,000 KB
testcase_21 AC 203 ms
96,000 KB
testcase_22 AC 216 ms
96,016 KB
testcase_23 AC 200 ms
95,912 KB
testcase_24 AC 198 ms
95,788 KB
testcase_25 AC 204 ms
95,648 KB
testcase_26 AC 206 ms
95,732 KB
testcase_27 AC 203 ms
95,984 KB
testcase_28 AC 212 ms
95,880 KB
testcase_29 AC 217 ms
95,764 KB
testcase_30 AC 211 ms
96,020 KB
testcase_31 AC 211 ms
95,828 KB
testcase_32 AC 200 ms
96,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
g = [[] for _ in range(n)]
for i in range(n-1):
    a,b = map(int,input().split())
    g[a-1].append(b-1)
    g[b-1].append(a-1)
 
order = []
st = [0]
parent = [-1]*n
while st:
    v = st.pop()
    order.append(v)
    for c in g[v]:
        if c != parent[v]:
            st.append(c)
            parent[c] = v

size = [1]*n
for i in order[::-1]:
    if i==0: break
    size[parent[i]] += size[i]
    
v = 0
for i in range(n):
    v += size[i]*(n-size[i])

MOD = 998244353
c = n*(n-1)*(n-1)//2%MOD
p = v*pow(c,MOD-2,MOD)%MOD
print((1-p)%MOD)
0