結果

問題 No.1418 Sum of Sum of Subtree Size
ユーザー minatominato
提出日時 2023-03-09 07:46:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 449 ms / 2,000 ms
コード長 470 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 177,280 KB
最終ジャッジ日時 2024-09-18 02:49:22
合計ジャッジ時間 8,527 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 40 ms
51,584 KB
testcase_02 AC 40 ms
51,584 KB
testcase_03 AC 285 ms
87,552 KB
testcase_04 AC 288 ms
88,192 KB
testcase_05 AC 294 ms
88,576 KB
testcase_06 AC 290 ms
88,192 KB
testcase_07 AC 279 ms
87,936 KB
testcase_08 AC 223 ms
84,480 KB
testcase_09 AC 151 ms
80,512 KB
testcase_10 AC 169 ms
80,512 KB
testcase_11 AC 129 ms
78,208 KB
testcase_12 AC 194 ms
82,432 KB
testcase_13 AC 208 ms
84,096 KB
testcase_14 AC 225 ms
84,608 KB
testcase_15 AC 197 ms
82,432 KB
testcase_16 AC 106 ms
76,928 KB
testcase_17 AC 108 ms
76,800 KB
testcase_18 AC 277 ms
86,784 KB
testcase_19 AC 130 ms
78,720 KB
testcase_20 AC 101 ms
77,440 KB
testcase_21 AC 190 ms
82,176 KB
testcase_22 AC 171 ms
81,280 KB
testcase_23 AC 97 ms
76,544 KB
testcase_24 AC 103 ms
76,672 KB
testcase_25 AC 93 ms
76,800 KB
testcase_26 AC 100 ms
76,672 KB
testcase_27 AC 57 ms
60,800 KB
testcase_28 AC 67 ms
64,512 KB
testcase_29 AC 102 ms
76,800 KB
testcase_30 AC 103 ms
76,416 KB
testcase_31 AC 88 ms
74,112 KB
testcase_32 AC 97 ms
76,672 KB
testcase_33 AC 143 ms
92,416 KB
testcase_34 AC 449 ms
177,280 KB
testcase_35 AC 200 ms
109,184 KB
testcase_36 AC 96 ms
76,928 KB
testcase_37 AC 211 ms
90,240 KB
testcase_38 AC 193 ms
88,448 KB
testcase_39 AC 40 ms
51,840 KB
testcase_40 AC 40 ms
51,968 KB
testcase_41 AC 42 ms
51,968 KB
testcase_42 AC 40 ms
51,328 KB
testcase_43 AC 41 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**9)

N = int(input())
G = [[] for _ 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(v, pv):
    global ans
    cnt = 1
    for nv in G[v]:
        if nv == pv:
            continue
        chi = dfs(nv, v)
        ans += (N - chi) * chi
        cnt += chi
    ans += cnt * (N - cnt)
    ans += N
    return cnt


dfs(0, -1)
print(ans)
0