結果

問題 No.1418 Sum of Sum of Subtree Size
ユーザー 8nd5t8nd5t
提出日時 2021-03-05 22:31:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 483 ms / 2,000 ms
コード長 821 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 179,968 KB
最終ジャッジ日時 2024-10-07 03:08:50
合計ジャッジ時間 11,544 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 149 ms
84,608 KB
testcase_01 AC 148 ms
84,352 KB
testcase_02 AC 149 ms
84,428 KB
testcase_03 AC 311 ms
97,008 KB
testcase_04 AC 335 ms
96,768 KB
testcase_05 AC 338 ms
96,768 KB
testcase_06 AC 332 ms
97,024 KB
testcase_07 AC 317 ms
96,712 KB
testcase_08 AC 284 ms
93,064 KB
testcase_09 AC 220 ms
88,960 KB
testcase_10 AC 226 ms
89,540 KB
testcase_11 AC 208 ms
87,580 KB
testcase_12 AC 253 ms
91,776 KB
testcase_13 AC 255 ms
92,800 KB
testcase_14 AC 285 ms
93,440 KB
testcase_15 AC 243 ms
90,948 KB
testcase_16 AC 187 ms
86,144 KB
testcase_17 AC 191 ms
86,272 KB
testcase_18 AC 318 ms
95,872 KB
testcase_19 AC 206 ms
87,296 KB
testcase_20 AC 184 ms
86,360 KB
testcase_21 AC 244 ms
91,136 KB
testcase_22 AC 224 ms
89,744 KB
testcase_23 AC 172 ms
85,916 KB
testcase_24 AC 184 ms
86,028 KB
testcase_25 AC 177 ms
86,272 KB
testcase_26 AC 177 ms
86,144 KB
testcase_27 AC 153 ms
85,248 KB
testcase_28 AC 160 ms
85,376 KB
testcase_29 AC 187 ms
86,144 KB
testcase_30 AC 187 ms
86,272 KB
testcase_31 AC 179 ms
86,656 KB
testcase_32 AC 178 ms
86,400 KB
testcase_33 AC 224 ms
102,144 KB
testcase_34 AC 483 ms
179,968 KB
testcase_35 AC 281 ms
120,448 KB
testcase_36 AC 176 ms
86,656 KB
testcase_37 AC 268 ms
99,840 KB
testcase_38 AC 250 ms
98,176 KB
testcase_39 AC 149 ms
84,736 KB
testcase_40 AC 148 ms
84,644 KB
testcase_41 AC 148 ms
84,736 KB
testcase_42 AC 147 ms
84,788 KB
testcase_43 AC 147 ms
84,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter,defaultdict,deque
from heapq import heappop,heappush,heapify
from bisect import bisect_left,bisect_right
import sys,math,itertools,pprint,fractions
sys.setrecursionlimit(10**8)
mod = 10**9+7
INF = float('inf')
def inp(): return int(sys.stdin.readline())
def inpl(): return list(map(int, sys.stdin.readline().split()))
def inpl_1(): return list(map(lambda x:int(x)-1, sys.stdin.readline().split()))
def err(x): print(x); exit()

n = inp()
g = [[] for _ in range(n)]
for _ in range(n-1):
    a,b = inpl_1()
    g[b].append(a); g[a].append(b)
res = 0
def dfs(u,p=-1):
    global res
    su = 0
    for v in g[u]:
        if p==v: continue
        now = dfs(v,u)
        res += now*(n-now)
        su += now
    up = (n-su-1)
    res += up*(n-up)
    res += n
    return su+1
dfs(0)
print(res)
0