結果

問題 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  
実行時間 563 ms / 2,000 ms
コード長 442 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 46,336 KB
最終ジャッジ日時 2024-04-17 05:38:43
合計ジャッジ時間 10,034 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 559 ms
27,392 KB
testcase_04 AC 540 ms
27,136 KB
testcase_05 AC 522 ms
27,136 KB
testcase_06 AC 549 ms
27,136 KB
testcase_07 AC 531 ms
27,264 KB
testcase_08 AC 354 ms
21,888 KB
testcase_09 AC 181 ms
15,872 KB
testcase_10 AC 194 ms
16,640 KB
testcase_11 AC 114 ms
13,568 KB
testcase_12 AC 293 ms
19,712 KB
testcase_13 AC 344 ms
21,120 KB
testcase_14 AC 354 ms
21,760 KB
testcase_15 AC 279 ms
18,944 KB
testcase_16 AC 57 ms
11,776 KB
testcase_17 AC 57 ms
11,776 KB
testcase_18 AC 508 ms
25,728 KB
testcase_19 AC 103 ms
13,568 KB
testcase_20 AC 42 ms
11,136 KB
testcase_21 AC 258 ms
18,688 KB
testcase_22 AC 233 ms
17,408 KB
testcase_23 AC 44 ms
11,008 KB
testcase_24 AC 45 ms
11,008 KB
testcase_25 AC 38 ms
11,136 KB
testcase_26 AC 42 ms
11,136 KB
testcase_27 AC 30 ms
10,624 KB
testcase_28 AC 33 ms
10,880 KB
testcase_29 AC 51 ms
11,392 KB
testcase_30 AC 48 ms
11,264 KB
testcase_31 AC 39 ms
10,880 KB
testcase_32 AC 42 ms
11,008 KB
testcase_33 AC 138 ms
18,688 KB
testcase_34 AC 563 ms
46,336 KB
testcase_35 AC 233 ms
25,856 KB
testcase_36 AC 79 ms
12,416 KB
testcase_37 AC 445 ms
23,808 KB
testcase_38 AC 393 ms
22,784 KB
testcase_39 AC 28 ms
10,752 KB
testcase_40 AC 29 ms
10,624 KB
testcase_41 AC 29 ms
10,752 KB
testcase_42 AC 28 ms
10,624 KB
testcase_43 AC 28 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