結果

問題 No.2427 Tree Distance Two
ユーザー CecilCecil
提出日時 2023-08-19 01:00:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 981 ms / 2,000 ms
コード長 337 bytes
コンパイル時間 317 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 163,904 KB
最終ジャッジ日時 2024-05-06 08:07:10
合計ジャッジ時間 16,068 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,632 KB
testcase_01 AC 40 ms
53,248 KB
testcase_02 AC 41 ms
53,376 KB
testcase_03 AC 981 ms
152,508 KB
testcase_04 AC 41 ms
53,632 KB
testcase_05 AC 950 ms
152,372 KB
testcase_06 AC 42 ms
53,504 KB
testcase_07 AC 648 ms
159,964 KB
testcase_08 AC 734 ms
163,260 KB
testcase_09 AC 680 ms
161,744 KB
testcase_10 AC 702 ms
163,904 KB
testcase_11 AC 701 ms
158,740 KB
testcase_12 AC 780 ms
159,792 KB
testcase_13 AC 835 ms
157,732 KB
testcase_14 AC 389 ms
146,968 KB
testcase_15 AC 40 ms
53,760 KB
testcase_16 AC 42 ms
54,016 KB
testcase_17 AC 42 ms
53,632 KB
testcase_18 AC 46 ms
54,400 KB
testcase_19 AC 46 ms
53,760 KB
testcase_20 AC 108 ms
77,952 KB
testcase_21 AC 111 ms
78,208 KB
testcase_22 AC 91 ms
77,184 KB
testcase_23 AC 90 ms
76,928 KB
testcase_24 AC 104 ms
77,952 KB
testcase_25 AC 239 ms
92,732 KB
testcase_26 AC 566 ms
123,468 KB
testcase_27 AC 387 ms
105,520 KB
testcase_28 AC 849 ms
144,004 KB
testcase_29 AC 735 ms
137,352 KB
testcase_30 AC 532 ms
118,860 KB
testcase_31 AC 342 ms
102,032 KB
testcase_32 AC 513 ms
118,260 KB
testcase_33 AC 470 ms
109,740 KB
testcase_34 AC 179 ms
87,572 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