結果

問題 No.2427 Tree Distance Two
ユーザー CecilCecil
提出日時 2023-08-19 01:00:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,005 ms / 2,000 ms
コード長 337 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 163,784 KB
最終ジャッジ日時 2024-11-28 13:17:57
合計ジャッジ時間 16,659 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,504 KB
testcase_01 AC 41 ms
53,888 KB
testcase_02 AC 41 ms
53,376 KB
testcase_03 AC 1,000 ms
152,132 KB
testcase_04 AC 40 ms
53,760 KB
testcase_05 AC 1,005 ms
152,032 KB
testcase_06 AC 40 ms
53,760 KB
testcase_07 AC 665 ms
160,480 KB
testcase_08 AC 763 ms
163,008 KB
testcase_09 AC 682 ms
161,444 KB
testcase_10 AC 717 ms
163,784 KB
testcase_11 AC 740 ms
158,780 KB
testcase_12 AC 817 ms
159,400 KB
testcase_13 AC 894 ms
157,980 KB
testcase_14 AC 401 ms
147,072 KB
testcase_15 AC 42 ms
54,016 KB
testcase_16 AC 41 ms
53,760 KB
testcase_17 AC 41 ms
53,632 KB
testcase_18 AC 43 ms
54,144 KB
testcase_19 AC 42 ms
53,760 KB
testcase_20 AC 103 ms
77,696 KB
testcase_21 AC 106 ms
78,076 KB
testcase_22 AC 86 ms
77,312 KB
testcase_23 AC 86 ms
77,312 KB
testcase_24 AC 108 ms
78,208 KB
testcase_25 AC 261 ms
92,724 KB
testcase_26 AC 612 ms
123,212 KB
testcase_27 AC 447 ms
105,380 KB
testcase_28 AC 936 ms
144,124 KB
testcase_29 AC 822 ms
137,528 KB
testcase_30 AC 590 ms
118,724 KB
testcase_31 AC 397 ms
101,900 KB
testcase_32 AC 582 ms
118,468 KB
testcase_33 AC 510 ms
109,740 KB
testcase_34 AC 189 ms
87,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict as dd

n = int(input())

G = [ [] for _ in range(n+1) ]
deg = dd(lambda:0)

for _ in range(n-1):
    u,v = map(int, input().split())
    G[u].append(v)
    G[v].append(u)
    deg[u] += 1
    deg[v] += 1

for v in range(1, n+1):
    ans = -deg[v]
    for u in G[v]:
        ans += deg[u]
    print(ans)
0