結果

問題 No.1507 Road Blocked
ユーザー ああいいああいい
提出日時 2021-12-31 19:18:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 658 ms / 2,000 ms
コード長 623 bytes
コンパイル時間 490 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 47,488 KB
最終ジャッジ日時 2024-10-08 20:57:25
合計ジャッジ時間 18,501 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 29 ms
10,496 KB
testcase_03 AC 476 ms
47,488 KB
testcase_04 AC 595 ms
28,032 KB
testcase_05 AC 658 ms
28,032 KB
testcase_06 AC 530 ms
28,032 KB
testcase_07 AC 512 ms
28,160 KB
testcase_08 AC 525 ms
27,904 KB
testcase_09 AC 514 ms
28,032 KB
testcase_10 AC 550 ms
27,904 KB
testcase_11 AC 571 ms
28,032 KB
testcase_12 AC 560 ms
28,160 KB
testcase_13 AC 538 ms
28,032 KB
testcase_14 AC 542 ms
28,160 KB
testcase_15 AC 549 ms
28,032 KB
testcase_16 AC 543 ms
28,160 KB
testcase_17 AC 541 ms
28,032 KB
testcase_18 AC 543 ms
27,904 KB
testcase_19 AC 580 ms
27,904 KB
testcase_20 AC 556 ms
28,032 KB
testcase_21 AC 561 ms
27,904 KB
testcase_22 AC 534 ms
28,160 KB
testcase_23 AC 534 ms
28,032 KB
testcase_24 AC 560 ms
28,160 KB
testcase_25 AC 530 ms
28,032 KB
testcase_26 AC 529 ms
28,160 KB
testcase_27 AC 567 ms
28,160 KB
testcase_28 AC 554 ms
28,032 KB
testcase_29 AC 541 ms
28,032 KB
testcase_30 AC 560 ms
28,032 KB
testcase_31 AC 537 ms
28,160 KB
testcase_32 AC 533 ms
28,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10 ** 6)

N = int(input())
P = 998244353

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

memo = [0] * (N + 1)
ans = 0
def dfs(now = 1,parent = 0):
    global ans
    if now != 1 and len(G[now]) == 1:
        ans = (ans + N - 1) % P
        return 1
    count = 1
    for v in G[now]:
        if v != parent:
            count += dfs(v,now)
    ans = (ans + count * (N - count)) % P
    return count
dfs()
inv = pow(N * (N - 1) * (N - 1) // 2,P - 2,P)
ans = N * (N - 1) * (N - 1) // 2 - ans
print(ans * inv % P)
0