結果

問題 No.1418 Sum of Sum of Subtree Size
ユーザー hitonanodehitonanode
提出日時 2021-02-06 12:59:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 312 ms / 2,000 ms
コード長 654 bytes
コンパイル時間 72 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 49,664 KB
最終ジャッジ日時 2024-07-02 21:36:55
合計ジャッジ時間 6,174 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 28 ms
10,880 KB
testcase_03 AC 297 ms
27,264 KB
testcase_04 AC 277 ms
27,264 KB
testcase_05 AC 278 ms
27,392 KB
testcase_06 AC 265 ms
27,392 KB
testcase_07 AC 269 ms
27,520 KB
testcase_08 AC 189 ms
22,016 KB
testcase_09 AC 97 ms
16,000 KB
testcase_10 AC 106 ms
16,512 KB
testcase_11 AC 71 ms
13,824 KB
testcase_12 AC 147 ms
19,840 KB
testcase_13 AC 164 ms
21,248 KB
testcase_14 AC 178 ms
22,016 KB
testcase_15 AC 138 ms
19,072 KB
testcase_16 AC 40 ms
11,776 KB
testcase_17 AC 41 ms
11,776 KB
testcase_18 AC 265 ms
25,984 KB
testcase_19 AC 63 ms
13,440 KB
testcase_20 AC 33 ms
11,008 KB
testcase_21 AC 140 ms
18,816 KB
testcase_22 AC 120 ms
17,792 KB
testcase_23 AC 34 ms
11,264 KB
testcase_24 AC 34 ms
11,392 KB
testcase_25 AC 30 ms
11,136 KB
testcase_26 AC 35 ms
11,264 KB
testcase_27 AC 27 ms
10,752 KB
testcase_28 AC 28 ms
10,752 KB
testcase_29 AC 36 ms
11,648 KB
testcase_30 AC 35 ms
11,392 KB
testcase_31 AC 29 ms
11,008 KB
testcase_32 AC 33 ms
11,264 KB
testcase_33 AC 83 ms
19,456 KB
testcase_34 AC 312 ms
49,664 KB
testcase_35 AC 123 ms
27,264 KB
testcase_36 AC 49 ms
12,544 KB
testcase_37 AC 204 ms
23,936 KB
testcase_38 AC 193 ms
23,040 KB
testcase_39 AC 28 ms
10,752 KB
testcase_40 AC 26 ms
10,752 KB
testcase_41 AC 28 ms
10,752 KB
testcase_42 AC 25 ms
10,752 KB
testcase_43 AC 26 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(200000)

input = sys.stdin.readline

ret = 0


def main():
    N = int(input())
    to = [[] for _ in range(N)]

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

    def dfs(now: int, prv: int) -> int:
        global ret
        nexts = to[now]
        subtree_size = 1
        for nxt in nexts:
            if nxt != prv:
                tmp = dfs(nxt, now)
                ret += tmp * (N - tmp) * 2
                subtree_size += tmp
        ret += N
        return subtree_size

    dfs(0, -1)
    print(ret)


main()
0