結果

問題 No.2427 Tree Distance Two
ユーザー lloyzlloyz
提出日時 2023-08-18 22:01:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 784 ms / 2,000 ms
コード長 338 bytes
コンパイル時間 366 ms
コンパイル使用メモリ 81,856 KB
実行使用メモリ 164,972 KB
最終ジャッジ日時 2024-11-28 07:07:00
合計ジャッジ時間 14,376 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,376 KB
testcase_01 AC 46 ms
53,632 KB
testcase_02 AC 46 ms
53,504 KB
testcase_03 AC 783 ms
152,960 KB
testcase_04 AC 43 ms
53,376 KB
testcase_05 AC 784 ms
153,604 KB
testcase_06 AC 45 ms
53,632 KB
testcase_07 AC 522 ms
162,976 KB
testcase_08 AC 623 ms
163,696 KB
testcase_09 AC 590 ms
161,212 KB
testcase_10 AC 590 ms
164,972 KB
testcase_11 AC 616 ms
162,232 KB
testcase_12 AC 670 ms
161,116 KB
testcase_13 AC 712 ms
156,728 KB
testcase_14 AC 396 ms
147,320 KB
testcase_15 AC 45 ms
54,016 KB
testcase_16 AC 45 ms
53,632 KB
testcase_17 AC 45 ms
53,632 KB
testcase_18 AC 45 ms
54,144 KB
testcase_19 AC 45 ms
53,504 KB
testcase_20 AC 102 ms
77,568 KB
testcase_21 AC 105 ms
77,928 KB
testcase_22 AC 93 ms
77,056 KB
testcase_23 AC 90 ms
76,672 KB
testcase_24 AC 103 ms
77,440 KB
testcase_25 AC 233 ms
92,980 KB
testcase_26 AC 484 ms
121,332 KB
testcase_27 AC 350 ms
107,008 KB
testcase_28 AC 701 ms
145,080 KB
testcase_29 AC 630 ms
135,168 KB
testcase_30 AC 457 ms
117,072 KB
testcase_31 AC 323 ms
102,728 KB
testcase_32 AC 457 ms
117,032 KB
testcase_33 AC 418 ms
111,412 KB
testcase_34 AC 181 ms
87,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

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

ANS = [0 for _ in range(n)]
for i in range(n):
    L = G[i]
    num = len(L)
    for j in L:
        ANS[j] += num - 1
print(*ANS, sep='\n')
0