結果

問題 No.1098 LCAs
ユーザー stngstng
提出日時 2022-08-29 20:30:07
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 628 bytes
コンパイル時間 394 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 485,112 KB
最終ジャッジ日時 2024-11-06 18:05:16
合計ジャッジ時間 13,450 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,132 KB
testcase_01 AC 40 ms
52,564 KB
testcase_02 AC 39 ms
52,256 KB
testcase_03 AC 39 ms
52,800 KB
testcase_04 AC 39 ms
52,620 KB
testcase_05 AC 39 ms
53,008 KB
testcase_06 AC 39 ms
54,004 KB
testcase_07 AC 39 ms
52,740 KB
testcase_08 AC 40 ms
53,732 KB
testcase_09 AC 40 ms
53,944 KB
testcase_10 AC 40 ms
52,648 KB
testcase_11 AC 39 ms
52,960 KB
testcase_12 AC 39 ms
53,532 KB
testcase_13 AC 66 ms
69,552 KB
testcase_14 AC 67 ms
69,740 KB
testcase_15 AC 67 ms
69,864 KB
testcase_16 AC 62 ms
66,448 KB
testcase_17 AC 67 ms
70,656 KB
testcase_18 AC 579 ms
111,648 KB
testcase_19 AC 588 ms
111,640 KB
testcase_20 AC 575 ms
111,512 KB
testcase_21 AC 572 ms
111,564 KB
testcase_22 AC 577 ms
112,432 KB
testcase_23 AC 473 ms
114,840 KB
testcase_24 AC 470 ms
114,848 KB
testcase_25 AC 419 ms
114,520 KB
testcase_26 AC 420 ms
113,972 KB
testcase_27 AC 407 ms
114,068 KB
testcase_28 AC 1,461 ms
322,428 KB
testcase_29 AC 1,486 ms
321,428 KB
testcase_30 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**7)
n = int(input())
vw = [[] for i in range(n)]

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

dp = [0]*n
chk = [0]*n
ans = [0]*n

def dfs(v,pre):
    if chk[v] == 1:
        return dp[v]
    tmp = 1
    rui2 = 0
    for i in range(len(vw[v])):
        if vw[v][i] == pre:
            continue
        t = dfs(vw[v][i],v)
        dp[v] += t
        tmp += t
        rui2 += t**2
        chk[v] = 1
    dp[v] += 1
    ans[v] = tmp**2-rui2
    return dp[v]

dfs(0,-1)
#print(dp)
print(*ans,sep="\n")
#for i in range(n):
0