結果

問題 No.1098 LCAs
ユーザー chineristACchineristAC
提出日時 2020-06-26 22:25:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 455 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 48,512 KB
最終ジャッジ日時 2024-07-04 22:08:41
合計ジャッジ時間 13,004 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 29 ms
10,496 KB
testcase_08 AC 30 ms
10,496 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 28 ms
10,624 KB
testcase_11 AC 30 ms
10,624 KB
testcase_12 AC 29 ms
10,624 KB
testcase_13 AC 32 ms
10,880 KB
testcase_14 AC 31 ms
10,880 KB
testcase_15 AC 30 ms
10,752 KB
testcase_16 AC 30 ms
10,752 KB
testcase_17 AC 31 ms
10,752 KB
testcase_18 AC 950 ms
47,744 KB
testcase_19 AC 936 ms
47,744 KB
testcase_20 AC 944 ms
47,488 KB
testcase_21 AC 959 ms
47,744 KB
testcase_22 AC 948 ms
47,488 KB
testcase_23 AC 782 ms
42,624 KB
testcase_24 AC 786 ms
42,752 KB
testcase_25 AC 761 ms
42,240 KB
testcase_26 AC 834 ms
48,512 KB
testcase_27 AC 856 ms
48,512 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input=sys.stdin.readline

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