結果

問題 No.2427 Tree Distance Two
ユーザー 寝癖寝癖
提出日時 2024-06-02 18:35:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 748 ms / 2,000 ms
コード長 611 bytes
コンパイル時間 502 ms
コンパイル使用メモリ 82,216 KB
実行使用メモリ 148,936 KB
最終ジャッジ日時 2024-06-02 18:35:32
合計ジャッジ時間 14,571 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 36 ms
51,712 KB
testcase_03 AC 748 ms
116,864 KB
testcase_04 AC 36 ms
51,840 KB
testcase_05 AC 694 ms
117,120 KB
testcase_06 AC 37 ms
51,840 KB
testcase_07 AC 587 ms
148,936 KB
testcase_08 AC 656 ms
129,024 KB
testcase_09 AC 658 ms
145,920 KB
testcase_10 AC 630 ms
130,432 KB
testcase_11 AC 662 ms
146,540 KB
testcase_12 AC 700 ms
137,896 KB
testcase_13 AC 690 ms
131,456 KB
testcase_14 AC 312 ms
114,784 KB
testcase_15 AC 36 ms
52,096 KB
testcase_16 AC 38 ms
52,480 KB
testcase_17 AC 37 ms
52,352 KB
testcase_18 AC 38 ms
52,736 KB
testcase_19 AC 37 ms
52,352 KB
testcase_20 AC 114 ms
77,184 KB
testcase_21 AC 102 ms
77,312 KB
testcase_22 AC 90 ms
76,800 KB
testcase_23 AC 87 ms
76,928 KB
testcase_24 AC 99 ms
77,056 KB
testcase_25 AC 200 ms
86,784 KB
testcase_26 AC 460 ms
101,248 KB
testcase_27 AC 311 ms
93,824 KB
testcase_28 AC 673 ms
113,152 KB
testcase_29 AC 568 ms
108,928 KB
testcase_30 AC 400 ms
100,224 KB
testcase_31 AC 297 ms
92,800 KB
testcase_32 AC 397 ms
100,348 KB
testcase_33 AC 372 ms
97,664 KB
testcase_34 AC 180 ms
83,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
to = [[] for _ in range(N)]

for _ in range(N-1):
    u, v = map(int, input().split())
    to[u-1].append(v-1)
    to[v-1].append(u-1)

p = [-2] * N
stack = [0]
p[0] = -1
while stack:
    v = stack.pop()
    for u in to[v]:
        if p[u] == -2:
            p[u] = v
            stack.append(u)

n_child = [0] * N
for i in range(N):
    n_child[i] = len(to[i]) - int(i != 0)

for i in range(N):
    res = 0
    for j in to[i]:
        if j == p[i]:
            res += n_child[j] - 1
            if p[j] != -1:
                res += 1
        else:
            res += n_child[j]
    print(res)
0