結果

問題 No.1418 Sum of Sum of Subtree Size
ユーザー 8nd5t8nd5t
提出日時 2021-03-05 22:31:19
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 915 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 91,904 KB
最終ジャッジ日時 2024-10-07 03:07:24
合計ジャッジ時間 7,282 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
60,928 KB
testcase_01 AC 55 ms
60,544 KB
testcase_02 AC 57 ms
60,672 KB
testcase_03 AC 245 ms
88,960 KB
testcase_04 AC 261 ms
89,088 KB
testcase_05 AC 235 ms
89,344 KB
testcase_06 AC 243 ms
89,216 KB
testcase_07 AC 233 ms
88,960 KB
testcase_08 AC 199 ms
85,504 KB
testcase_09 AC 136 ms
81,664 KB
testcase_10 AC 142 ms
81,792 KB
testcase_11 AC 114 ms
80,000 KB
testcase_12 AC 163 ms
83,840 KB
testcase_13 AC 166 ms
84,864 KB
testcase_14 AC 195 ms
85,504 KB
testcase_15 AC 170 ms
83,328 KB
testcase_16 AC 99 ms
77,824 KB
testcase_17 AC 97 ms
77,952 KB
testcase_18 AC 219 ms
87,936 KB
testcase_19 AC 113 ms
79,488 KB
testcase_20 AC 93 ms
78,080 KB
testcase_21 AC 173 ms
83,200 KB
testcase_22 AC 167 ms
82,688 KB
testcase_23 AC 100 ms
77,696 KB
testcase_24 AC 96 ms
77,824 KB
testcase_25 AC 92 ms
77,696 KB
testcase_26 AC 93 ms
77,696 KB
testcase_27 AC 60 ms
64,384 KB
testcase_28 AC 70 ms
68,352 KB
testcase_29 AC 93 ms
78,208 KB
testcase_30 AC 95 ms
77,696 KB
testcase_31 AC 86 ms
77,056 KB
testcase_32 AC 87 ms
77,824 KB
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 AC 88 ms
77,824 KB
testcase_37 AC 174 ms
90,756 KB
testcase_38 AC 164 ms
89,196 KB
testcase_39 AC 50 ms
60,928 KB
testcase_40 AC 50 ms
61,056 KB
testcase_41 AC 51 ms
60,800 KB
testcase_42 AC 49 ms
60,672 KB
testcase_43 AC 51 ms
60,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,math,itertools
from collections import Counter,deque,defaultdict
from bisect import bisect_left,bisect_right 
from heapq import heappop,heappush,heapify, nlargest
from copy import deepcopy
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 inps(): return sys.stdin.readline()
def inpsl(x): tmp = sys.stdin.readline(); return list(tmp[:x])
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