結果

問題 No.1098 LCAs
ユーザー kohei2019kohei2019
提出日時 2022-07-25 23:49:26
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 616 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 81,868 KB
実行使用メモリ 486,656 KB
最終ジャッジ日時 2024-07-08 02:39:48
合計ジャッジ時間 12,760 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 36 ms
51,840 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 37 ms
51,840 KB
testcase_04 AC 37 ms
51,712 KB
testcase_05 AC 37 ms
51,968 KB
testcase_06 AC 36 ms
52,224 KB
testcase_07 AC 37 ms
51,968 KB
testcase_08 AC 37 ms
52,096 KB
testcase_09 AC 37 ms
52,096 KB
testcase_10 AC 37 ms
52,480 KB
testcase_11 AC 41 ms
52,480 KB
testcase_12 AC 36 ms
51,712 KB
testcase_13 AC 71 ms
72,832 KB
testcase_14 AC 67 ms
70,272 KB
testcase_15 AC 68 ms
70,272 KB
testcase_16 AC 64 ms
68,992 KB
testcase_17 AC 66 ms
70,400 KB
testcase_18 AC 632 ms
124,288 KB
testcase_19 AC 630 ms
124,032 KB
testcase_20 AC 637 ms
124,160 KB
testcase_21 AC 630 ms
124,160 KB
testcase_22 AC 633 ms
124,604 KB
testcase_23 AC 469 ms
132,372 KB
testcase_24 AC 482 ms
132,504 KB
testcase_25 AC 411 ms
131,536 KB
testcase_26 AC 418 ms
132,020 KB
testcase_27 AC 406 ms
132,876 KB
testcase_28 AC 1,169 ms
307,584 KB
testcase_29 AC 1,180 ms
317,952 KB
testcase_30 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**7)
N = int(input())
lsg = [[] for i in range(N)]
for i in range(N-1):
    v,w = map(int,input().split())
    v -= 1
    w -= 1
    lsg[v].append(w)
    lsg[w].append(v)

dp = [0]*(N)
dp2 = [[1] for i in range(N)]

def dfs(k,p):
    cnt = 1
    for j in lsg[k]:
        if j == p:
            continue
        c = dfs(j,k)
        dp2[k].append(c)
        cnt += c
    dp[k] = cnt
    return cnt

dfs(0,-1)

for i in range(N):
    l = dp2[i]
    if len(l) == 1:
        print(1)
        continue
    sm = sum(l)
    ans = 1
    for j in l:
        ans += j*(sm-j)
    print(ans)

0