結果

問題 No.1098 LCAs
ユーザー kohei2019kohei2019
提出日時 2022-07-25 23:48:42
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 575 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 131,564 KB
最終ジャッジ日時 2024-07-08 02:38:35
合計ジャッジ時間 9,146 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,840 KB
testcase_01 AC 37 ms
51,584 KB
testcase_02 AC 33 ms
52,352 KB
testcase_03 AC 33 ms
51,840 KB
testcase_04 AC 33 ms
52,096 KB
testcase_05 AC 33 ms
51,968 KB
testcase_06 AC 32 ms
51,840 KB
testcase_07 AC 32 ms
51,968 KB
testcase_08 AC 32 ms
51,968 KB
testcase_09 AC 31 ms
51,968 KB
testcase_10 AC 31 ms
52,480 KB
testcase_11 AC 32 ms
51,968 KB
testcase_12 AC 31 ms
52,480 KB
testcase_13 AC 62 ms
72,704 KB
testcase_14 AC 60 ms
70,400 KB
testcase_15 AC 58 ms
70,400 KB
testcase_16 AC 54 ms
68,608 KB
testcase_17 AC 58 ms
70,016 KB
testcase_18 AC 541 ms
123,904 KB
testcase_19 AC 532 ms
124,452 KB
testcase_20 AC 544 ms
124,160 KB
testcase_21 AC 544 ms
123,776 KB
testcase_22 AC 522 ms
124,288 KB
testcase_23 AC 396 ms
131,176 KB
testcase_24 AC 408 ms
131,048 KB
testcase_25 AC 349 ms
129,964 KB
testcase_26 AC 375 ms
130,688 KB
testcase_27 AC 341 ms
131,564 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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