結果

問題 No.1098 LCAs
ユーザー chineristACchineristAC
提出日時 2020-06-26 22:26:24
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 486 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 491,392 KB
最終ジャッジ日時 2024-07-04 22:10:13
合計ジャッジ時間 10,592 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 37 ms
52,352 KB
testcase_03 AC 38 ms
52,096 KB
testcase_04 AC 37 ms
52,096 KB
testcase_05 AC 37 ms
51,968 KB
testcase_06 AC 37 ms
52,352 KB
testcase_07 AC 36 ms
51,840 KB
testcase_08 AC 36 ms
52,460 KB
testcase_09 AC 35 ms
51,952 KB
testcase_10 AC 37 ms
51,968 KB
testcase_11 AC 37 ms
52,224 KB
testcase_12 AC 35 ms
52,096 KB
testcase_13 AC 52 ms
64,768 KB
testcase_14 AC 53 ms
64,640 KB
testcase_15 AC 55 ms
64,128 KB
testcase_16 AC 51 ms
62,080 KB
testcase_17 AC 52 ms
64,256 KB
testcase_18 AC 425 ms
103,068 KB
testcase_19 AC 430 ms
103,168 KB
testcase_20 AC 435 ms
102,816 KB
testcase_21 AC 431 ms
103,232 KB
testcase_22 AC 421 ms
102,816 KB
testcase_23 AC 315 ms
106,752 KB
testcase_24 AC 319 ms
107,008 KB
testcase_25 AC 288 ms
107,864 KB
testcase_26 AC 309 ms
108,028 KB
testcase_27 AC 302 ms
107,648 KB
testcase_28 AC 1,065 ms
307,712 KB
testcase_29 AC 1,059 ms
307,328 KB
testcase_30 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input=sys.stdin.readline
sys.setrecursionlimit(2*10**5)

N=int(input())
edge=[[] for i in range(N)]
for i in range(N-1):
    v,w=map(int,input().split())
    edge[v-1].append(w-1)
    edge[w-1].append(v-1)

size=[0]*N
ans=[0]*N

def dfs(v,pv):
    size[v]=1
    res=0
    for nv in edge[v]:
        if nv!=pv:
            dfs(nv,v)
            size[v]+=size[nv]
            res-=size[nv]**2
    res+=size[v]**2
    ans[v]=res

dfs(0,-1)
for i in range(N):
    print(ans[i])
0