結果

問題 No.1507 Road Blocked
ユーザー 👑 rin204rin204
提出日時 2022-01-27 00:37:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 301 ms / 2,000 ms
コード長 569 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 177,792 KB
最終ジャッジ日時 2024-06-06 08:33:32
合計ジャッジ時間 11,393 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 36 ms
51,712 KB
testcase_03 AC 301 ms
177,792 KB
testcase_04 AC 282 ms
88,468 KB
testcase_05 AC 280 ms
87,936 KB
testcase_06 AC 273 ms
88,152 KB
testcase_07 AC 281 ms
88,448 KB
testcase_08 AC 278 ms
88,192 KB
testcase_09 AC 280 ms
88,168 KB
testcase_10 AC 278 ms
88,064 KB
testcase_11 AC 285 ms
88,192 KB
testcase_12 AC 282 ms
88,180 KB
testcase_13 AC 277 ms
87,996 KB
testcase_14 AC 285 ms
88,192 KB
testcase_15 AC 281 ms
88,064 KB
testcase_16 AC 278 ms
87,936 KB
testcase_17 AC 287 ms
88,192 KB
testcase_18 AC 287 ms
88,288 KB
testcase_19 AC 296 ms
88,292 KB
testcase_20 AC 283 ms
88,428 KB
testcase_21 AC 284 ms
88,192 KB
testcase_22 AC 280 ms
88,496 KB
testcase_23 AC 282 ms
88,028 KB
testcase_24 AC 285 ms
88,064 KB
testcase_25 AC 282 ms
88,320 KB
testcase_26 AC 282 ms
88,192 KB
testcase_27 AC 275 ms
88,064 KB
testcase_28 AC 277 ms
88,320 KB
testcase_29 AC 276 ms
88,148 KB
testcase_30 AC 281 ms
87,808 KB
testcase_31 AC 289 ms
88,192 KB
testcase_32 AC 281 ms
88,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10 ** 9)
MOD = 998244353

n = int(input())
edges = [[] for _ in range(n)]
for _ in range(n - 1):
    a, b = map(int, input().split())
    a -= 1
    b -= 1
    edges[a].append(b)
    edges[b].append(a)

ans = 0

def dfs(pos, bpos):
    global ans
    ret = 1
    for npos in edges[pos]:
        if npos == bpos:
            continue
        ret += dfs(npos, pos)
    if pos != 0:
        ans += n * (n - 1) // 2 - ret * (n - ret)
    return ret
    
dfs(0, -1)
div = n * (n - 1) // 2 * (n - 1)
print(ans * pow(div, MOD - 2, MOD) % MOD)
0