結果

問題 No.1418 Sum of Sum of Subtree Size
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-03-06 17:10:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 623 ms / 2,000 ms
コード長 442 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 46,336 KB
最終ジャッジ日時 2024-10-08 17:15:55
合計ジャッジ時間 10,867 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 591 ms
27,392 KB
testcase_04 AC 601 ms
27,136 KB
testcase_05 AC 581 ms
27,136 KB
testcase_06 AC 590 ms
27,264 KB
testcase_07 AC 589 ms
27,264 KB
testcase_08 AC 385 ms
21,632 KB
testcase_09 AC 189 ms
15,872 KB
testcase_10 AC 209 ms
16,384 KB
testcase_11 AC 125 ms
13,568 KB
testcase_12 AC 327 ms
19,584 KB
testcase_13 AC 369 ms
21,120 KB
testcase_14 AC 386 ms
21,632 KB
testcase_15 AC 295 ms
18,816 KB
testcase_16 AC 59 ms
11,648 KB
testcase_17 AC 61 ms
11,648 KB
testcase_18 AC 556 ms
25,856 KB
testcase_19 AC 116 ms
13,440 KB
testcase_20 AC 43 ms
11,008 KB
testcase_21 AC 273 ms
18,688 KB
testcase_22 AC 247 ms
17,536 KB
testcase_23 AC 46 ms
11,264 KB
testcase_24 AC 47 ms
11,008 KB
testcase_25 AC 42 ms
11,008 KB
testcase_26 AC 46 ms
11,136 KB
testcase_27 AC 32 ms
10,624 KB
testcase_28 AC 34 ms
10,880 KB
testcase_29 AC 52 ms
11,392 KB
testcase_30 AC 50 ms
11,264 KB
testcase_31 AC 40 ms
11,008 KB
testcase_32 AC 43 ms
11,008 KB
testcase_33 AC 141 ms
18,560 KB
testcase_34 AC 623 ms
46,336 KB
testcase_35 AC 245 ms
25,856 KB
testcase_36 AC 84 ms
12,416 KB
testcase_37 AC 470 ms
23,808 KB
testcase_38 AC 426 ms
22,912 KB
testcase_39 AC 31 ms
10,624 KB
testcase_40 AC 30 ms
10,496 KB
testcase_41 AC 29 ms
10,624 KB
testcase_42 AC 30 ms
10,752 KB
testcase_43 AC 30 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10 ** 6)
n = int(input())
G = [[] for i in range(n)]
for _ in range(n - 1):
    a, b = map(int, input().split())
    G[a - 1].append(b - 1)
    G[b - 1].append(a - 1)
ans = 0
def dfs(now, prev):
    global ans
    res = 1
    for nex in G[now]:
        if nex == prev: continue
        tmp = dfs(nex, now)
        ans += tmp * (n - tmp) * 2
        res += tmp
    ans += n
    return res
dfs(0, -1)
print(ans)
0