結果

問題 No.1418 Sum of Sum of Subtree Size
ユーザー ああいいああいい
提出日時 2022-01-08 20:27:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 607 ms / 2,000 ms
コード長 470 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 82,660 KB
実行使用メモリ 232,384 KB
最終ジャッジ日時 2024-11-14 09:44:58
合計ジャッジ時間 9,713 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,252 KB
testcase_01 AC 38 ms
53,012 KB
testcase_02 AC 37 ms
53,136 KB
testcase_03 AC 314 ms
88,296 KB
testcase_04 AC 319 ms
89,036 KB
testcase_05 AC 320 ms
88,552 KB
testcase_06 AC 308 ms
89,208 KB
testcase_07 AC 297 ms
88,928 KB
testcase_08 AC 250 ms
85,200 KB
testcase_09 AC 165 ms
80,984 KB
testcase_10 AC 183 ms
81,796 KB
testcase_11 AC 136 ms
79,104 KB
testcase_12 AC 240 ms
83,960 KB
testcase_13 AC 233 ms
84,532 KB
testcase_14 AC 244 ms
85,140 KB
testcase_15 AC 213 ms
82,508 KB
testcase_16 AC 115 ms
78,080 KB
testcase_17 AC 128 ms
78,212 KB
testcase_18 AC 297 ms
87,840 KB
testcase_19 AC 135 ms
78,784 KB
testcase_20 AC 101 ms
77,456 KB
testcase_21 AC 202 ms
82,948 KB
testcase_22 AC 192 ms
82,576 KB
testcase_23 AC 103 ms
77,344 KB
testcase_24 AC 108 ms
77,424 KB
testcase_25 AC 97 ms
77,032 KB
testcase_26 AC 120 ms
78,064 KB
testcase_27 AC 53 ms
63,604 KB
testcase_28 AC 64 ms
68,700 KB
testcase_29 AC 122 ms
78,056 KB
testcase_30 AC 107 ms
77,176 KB
testcase_31 AC 96 ms
76,740 KB
testcase_32 AC 105 ms
77,244 KB
testcase_33 AC 190 ms
110,824 KB
testcase_34 AC 607 ms
232,384 KB
testcase_35 AC 284 ms
141,904 KB
testcase_36 AC 88 ms
77,860 KB
testcase_37 AC 189 ms
92,388 KB
testcase_38 AC 190 ms
91,228 KB
testcase_39 AC 37 ms
52,924 KB
testcase_40 AC 36 ms
52,592 KB
testcase_41 AC 37 ms
54,232 KB
testcase_42 AC 37 ms
52,320 KB
testcase_43 AC 37 ms
53,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
G = [[] for _ in range(N+1)]

for _ in range(N-1):
    a,b = map(int,input().split())
    G[a].append(b)
    G[b].append(a)

import sys
sys.setrecursionlimit(10 ** 6)
ans = 0
def dfs(now = 1,parent = 0):
    global ans
    l = []
    for v in G[now]:
        if v == parent:continue
        l.append(dfs(v,now))
    a = N - sum(l) - 1
    ans += a * (N - a)
    for k in l:
        ans += k * (N - k)
    ans += N
    return sum(l) + 1
dfs()
print(ans)
0