結果

問題 No.1418 Sum of Sum of Subtree Size
ユーザー hitonanodehitonanode
提出日時 2021-02-06 12:58:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 623 bytes
コンパイル時間 474 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 27,520 KB
最終ジャッジ日時 2024-07-02 20:59:11
合計ジャッジ時間 6,204 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 24 ms
10,752 KB
testcase_03 AC 277 ms
27,264 KB
testcase_04 AC 295 ms
27,136 KB
testcase_05 AC 299 ms
27,520 KB
testcase_06 AC 281 ms
27,392 KB
testcase_07 AC 305 ms
27,392 KB
testcase_08 AC 206 ms
21,888 KB
testcase_09 AC 91 ms
16,000 KB
testcase_10 AC 106 ms
16,640 KB
testcase_11 AC 65 ms
13,952 KB
testcase_12 AC 153 ms
19,584 KB
testcase_13 AC 176 ms
21,376 KB
testcase_14 AC 193 ms
21,888 KB
testcase_15 AC 143 ms
18,944 KB
testcase_16 AC 42 ms
11,776 KB
testcase_17 AC 41 ms
11,648 KB
testcase_18 AC 256 ms
25,728 KB
testcase_19 AC 64 ms
13,312 KB
testcase_20 AC 34 ms
11,136 KB
testcase_21 AC 149 ms
18,560 KB
testcase_22 AC 137 ms
17,664 KB
testcase_23 AC 36 ms
11,264 KB
testcase_24 AC 35 ms
11,264 KB
testcase_25 AC 32 ms
11,136 KB
testcase_26 AC 32 ms
11,264 KB
testcase_27 AC 27 ms
10,880 KB
testcase_28 AC 28 ms
10,752 KB
testcase_29 AC 35 ms
11,520 KB
testcase_30 AC 34 ms
11,264 KB
testcase_31 AC 30 ms
10,880 KB
testcase_32 AC 32 ms
11,136 KB
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 AC 48 ms
12,416 KB
testcase_37 AC 217 ms
24,064 KB
testcase_38 AC 192 ms
23,040 KB
testcase_39 AC 26 ms
10,880 KB
testcase_40 AC 25 ms
10,624 KB
testcase_41 AC 26 ms
10,624 KB
testcase_42 AC 28 ms
10,752 KB
testcase_43 AC 26 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
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