結果

問題 No.1418 Sum of Sum of Subtree Size
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-03-06 17:10:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 376 ms / 2,000 ms
コード長 442 bytes
コンパイル時間 526 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 177,152 KB
最終ジャッジ日時 2024-10-08 17:16:29
合計ジャッジ時間 7,402 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 36 ms
52,352 KB
testcase_03 AC 245 ms
88,068 KB
testcase_04 AC 249 ms
88,704 KB
testcase_05 AC 259 ms
88,456 KB
testcase_06 AC 247 ms
88,064 KB
testcase_07 AC 254 ms
87,936 KB
testcase_08 AC 194 ms
84,608 KB
testcase_09 AC 124 ms
80,360 KB
testcase_10 AC 135 ms
80,384 KB
testcase_11 AC 103 ms
78,592 KB
testcase_12 AC 162 ms
82,688 KB
testcase_13 AC 178 ms
83,760 KB
testcase_14 AC 186 ms
84,224 KB
testcase_15 AC 158 ms
82,560 KB
testcase_16 AC 87 ms
77,440 KB
testcase_17 AC 88 ms
76,928 KB
testcase_18 AC 233 ms
87,040 KB
testcase_19 AC 106 ms
78,336 KB
testcase_20 AC 83 ms
77,056 KB
testcase_21 AC 160 ms
82,688 KB
testcase_22 AC 151 ms
81,420 KB
testcase_23 AC 82 ms
76,996 KB
testcase_24 AC 86 ms
76,928 KB
testcase_25 AC 77 ms
76,552 KB
testcase_26 AC 81 ms
76,544 KB
testcase_27 AC 46 ms
60,288 KB
testcase_28 AC 56 ms
65,024 KB
testcase_29 AC 85 ms
76,800 KB
testcase_30 AC 85 ms
76,928 KB
testcase_31 AC 72 ms
74,368 KB
testcase_32 AC 80 ms
76,672 KB
testcase_33 AC 118 ms
93,184 KB
testcase_34 AC 376 ms
177,152 KB
testcase_35 AC 177 ms
108,928 KB
testcase_36 AC 78 ms
77,184 KB
testcase_37 AC 172 ms
90,264 KB
testcase_38 AC 162 ms
88,704 KB
testcase_39 AC 36 ms
51,712 KB
testcase_40 AC 35 ms
51,584 KB
testcase_41 AC 34 ms
52,096 KB
testcase_42 AC 35 ms
51,968 KB
testcase_43 AC 35 ms
51,712 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