結果

問題 No.1418 Sum of Sum of Subtree Size
ユーザー minatominato
提出日時 2023-03-09 07:44:18
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 428 bytes
コンパイル時間 385 ms
コンパイル使用メモリ 82,840 KB
実行使用メモリ 91,460 KB
最終ジャッジ日時 2024-09-18 02:49:13
合計ジャッジ時間 7,119 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
51,328 KB
testcase_01 AC 30 ms
51,968 KB
testcase_02 AC 30 ms
51,712 KB
testcase_03 AC 189 ms
87,680 KB
testcase_04 AC 189 ms
88,452 KB
testcase_05 AC 184 ms
88,320 KB
testcase_06 AC 183 ms
87,936 KB
testcase_07 AC 188 ms
87,936 KB
testcase_08 AC 144 ms
84,096 KB
testcase_09 AC 105 ms
80,512 KB
testcase_10 AC 110 ms
80,452 KB
testcase_11 AC 88 ms
78,720 KB
testcase_12 AC 129 ms
82,304 KB
testcase_13 AC 136 ms
83,712 KB
testcase_14 AC 144 ms
83,968 KB
testcase_15 AC 128 ms
82,492 KB
testcase_16 AC 78 ms
77,056 KB
testcase_17 AC 78 ms
77,184 KB
testcase_18 AC 177 ms
86,784 KB
testcase_19 AC 91 ms
78,848 KB
testcase_20 AC 72 ms
76,928 KB
testcase_21 AC 126 ms
82,048 KB
testcase_22 AC 126 ms
81,280 KB
testcase_23 AC 77 ms
76,928 KB
testcase_24 AC 87 ms
76,800 KB
testcase_25 AC 80 ms
76,160 KB
testcase_26 AC 75 ms
76,928 KB
testcase_27 AC 42 ms
61,056 KB
testcase_28 AC 48 ms
64,640 KB
testcase_29 AC 72 ms
76,800 KB
testcase_30 AC 70 ms
76,672 KB
testcase_31 AC 61 ms
74,112 KB
testcase_32 AC 68 ms
76,672 KB
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 AC 68 ms
77,384 KB
testcase_37 AC 137 ms
89,912 KB
testcase_38 AC 129 ms
87,768 KB
testcase_39 AC 32 ms
51,328 KB
testcase_40 AC 30 ms
51,840 KB
testcase_41 AC 30 ms
52,096 KB
testcase_42 AC 31 ms
51,840 KB
testcase_43 AC 31 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
G = [[] for _ 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(v, pv):
    global ans
    cnt = 1
    for nv in G[v]:
        if nv == pv:
            continue
        chi = dfs(nv, v)
        ans += (N - chi) * chi
        cnt += chi
    ans += cnt * (N - cnt)
    ans += N
    return cnt


dfs(0, -1)
print(ans)
0