結果

問題 No.1507 Road Blocked
ユーザー AEnAEn
提出日時 2022-12-06 21:26:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 649 ms / 2,000 ms
コード長 653 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 54,784 KB
最終ジャッジ日時 2024-10-13 09:18:44
合計ジャッジ時間 21,327 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 567 ms
54,784 KB
testcase_04 AC 624 ms
29,568 KB
testcase_05 AC 613 ms
28,800 KB
testcase_06 AC 615 ms
28,928 KB
testcase_07 AC 617 ms
28,800 KB
testcase_08 AC 620 ms
29,056 KB
testcase_09 AC 633 ms
29,056 KB
testcase_10 AC 622 ms
28,928 KB
testcase_11 AC 614 ms
28,928 KB
testcase_12 AC 615 ms
28,928 KB
testcase_13 AC 614 ms
28,928 KB
testcase_14 AC 649 ms
29,056 KB
testcase_15 AC 605 ms
29,696 KB
testcase_16 AC 618 ms
28,800 KB
testcase_17 AC 608 ms
28,928 KB
testcase_18 AC 617 ms
28,928 KB
testcase_19 AC 624 ms
28,800 KB
testcase_20 AC 615 ms
29,056 KB
testcase_21 AC 617 ms
29,056 KB
testcase_22 AC 627 ms
30,464 KB
testcase_23 AC 619 ms
29,312 KB
testcase_24 AC 618 ms
29,056 KB
testcase_25 AC 596 ms
29,056 KB
testcase_26 AC 632 ms
29,056 KB
testcase_27 AC 617 ms
28,800 KB
testcase_28 AC 623 ms
28,928 KB
testcase_29 AC 635 ms
28,800 KB
testcase_30 AC 632 ms
28,928 KB
testcase_31 AC 626 ms
28,800 KB
testcase_32 AC 644 ms
29,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**7)

N = int(input())
G = [list() for _ in range(N)]
for i in range(N-1):
    u,v = map(int, input().split())
    u-=1;v-=1
    G[u].append(v)
    G[v].append(u)

depth = [0]*N
sub_tree = [0]*N
num = 0
def dfs(G, v, p, d):
    depth[v] = d
    for next_v in G[v]:
        if next_v == p:
            continue
        dfs(G, next_v, v, d+1)
    sub_tree[v] = 1
    for c in G[v]:
        if c== p:
            continue
        sub_tree[v] += sub_tree[c]
dfs(G,0,-1,0)
for i in range(1,N):
    s = sub_tree[i]
    num += s*(s-1)//2+(N-s)*(N-s-1)//2
mod = 998244353
n = (N-1)*N*(N-1)//2
print((num*pow(n,mod-2,mod))%mod)
0