結果

問題 No.1418 Sum of Sum of Subtree Size
ユーザー 👑 rin204rin204
提出日時 2022-02-24 21:39:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 534 ms / 2,000 ms
コード長 576 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 176,768 KB
最終ジャッジ日時 2024-07-02 13:54:06
合計ジャッジ時間 9,756 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 343 ms
88,576 KB
testcase_04 AC 341 ms
88,576 KB
testcase_05 AC 329 ms
88,960 KB
testcase_06 AC 335 ms
88,704 KB
testcase_07 AC 335 ms
88,960 KB
testcase_08 AC 246 ms
84,736 KB
testcase_09 AC 155 ms
80,256 KB
testcase_10 AC 166 ms
80,640 KB
testcase_11 AC 130 ms
78,720 KB
testcase_12 AC 213 ms
83,072 KB
testcase_13 AC 234 ms
84,352 KB
testcase_14 AC 244 ms
84,608 KB
testcase_15 AC 201 ms
82,688 KB
testcase_16 AC 103 ms
77,056 KB
testcase_17 AC 107 ms
77,184 KB
testcase_18 AC 319 ms
87,936 KB
testcase_19 AC 131 ms
78,464 KB
testcase_20 AC 99 ms
76,800 KB
testcase_21 AC 193 ms
82,176 KB
testcase_22 AC 186 ms
81,792 KB
testcase_23 AC 98 ms
76,800 KB
testcase_24 AC 99 ms
76,928 KB
testcase_25 AC 97 ms
76,928 KB
testcase_26 AC 98 ms
76,800 KB
testcase_27 AC 56 ms
61,056 KB
testcase_28 AC 68 ms
65,920 KB
testcase_29 AC 101 ms
76,928 KB
testcase_30 AC 97 ms
76,928 KB
testcase_31 AC 93 ms
76,928 KB
testcase_32 AC 95 ms
77,056 KB
testcase_33 AC 162 ms
94,080 KB
testcase_34 AC 534 ms
176,768 KB
testcase_35 AC 248 ms
116,608 KB
testcase_36 AC 100 ms
77,184 KB
testcase_37 AC 259 ms
93,440 KB
testcase_38 AC 247 ms
91,392 KB
testcase_39 AC 41 ms
51,968 KB
testcase_40 AC 39 ms
51,968 KB
testcase_41 AC 41 ms
52,352 KB
testcase_42 AC 40 ms
51,840 KB
testcase_43 AC 40 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10 ** 9)
import pypyjit
pypyjit.set_param('max_unroll_recursion=-1')

n = int(input())
edges = [[] for _ in range(n)]
for _ in range(n - 1):
    u, v = map(int, input().split())
    u -= 1
    v -= 1
    edges[u].append(v)
    edges[v].append(u)

size = [1] * n
ans = n * n
def dfs(pos, bpos):
    global ans
    for npos in edges[pos]:
        if npos == bpos:
            continue
        dfs(npos, pos)
        size[pos] += size[npos]
        ans += size[npos] * (n - size[npos])
    ans += size[pos] * (n - size[pos])
dfs(0, -1)
print(ans)
0