結果

問題 No.2427 Tree Distance Two
ユーザー noriocnorioc
提出日時 2023-08-18 23:07:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 639 ms / 2,000 ms
コード長 344 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 164,776 KB
最終ジャッジ日時 2024-11-28 09:45:20
合計ジャッジ時間 11,194 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,548 KB
testcase_01 AC 42 ms
53,992 KB
testcase_02 AC 43 ms
54,680 KB
testcase_03 AC 594 ms
152,628 KB
testcase_04 AC 40 ms
55,140 KB
testcase_05 AC 639 ms
153,068 KB
testcase_06 AC 38 ms
53,632 KB
testcase_07 AC 395 ms
161,360 KB
testcase_08 AC 438 ms
163,648 KB
testcase_09 AC 408 ms
159,776 KB
testcase_10 AC 426 ms
164,776 KB
testcase_11 AC 428 ms
161,988 KB
testcase_12 AC 481 ms
161,052 KB
testcase_13 AC 511 ms
160,344 KB
testcase_14 AC 351 ms
147,268 KB
testcase_15 AC 38 ms
54,320 KB
testcase_16 AC 38 ms
54,584 KB
testcase_17 AC 37 ms
54,512 KB
testcase_18 AC 39 ms
54,508 KB
testcase_19 AC 38 ms
54,936 KB
testcase_20 AC 94 ms
77,496 KB
testcase_21 AC 92 ms
77,808 KB
testcase_22 AC 84 ms
77,268 KB
testcase_23 AC 79 ms
76,960 KB
testcase_24 AC 94 ms
77,344 KB
testcase_25 AC 183 ms
93,284 KB
testcase_26 AC 371 ms
120,684 KB
testcase_27 AC 271 ms
106,276 KB
testcase_28 AC 532 ms
144,860 KB
testcase_29 AC 488 ms
134,664 KB
testcase_30 AC 346 ms
116,088 KB
testcase_31 AC 250 ms
102,152 KB
testcase_32 AC 364 ms
115,660 KB
testcase_33 AC 305 ms
110,660 KB
testcase_34 AC 141 ms
87,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

N = int(input())
adj = defaultdict(list)
for _ in range(N-1):
    u, v = map(lambda x: int(x)-1, input().split())
    adj[u].append(v)
    adj[v].append(u)

ans = [0] * N
for i in range(N):
    cnt = len(adj[i])
    if cnt < 2: continue
    for v in adj[i]:
        ans[v] += cnt - 1

print(*ans, sep='\n')
0