結果

問題 No.2427 Tree Distance Two
ユーザー lloyzlloyz
提出日時 2023-08-18 22:01:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 726 ms / 2,000 ms
コード長 338 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 165,036 KB
最終ジャッジ日時 2024-05-06 04:02:52
合計ジャッジ時間 13,713 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,504 KB
testcase_01 AC 40 ms
53,504 KB
testcase_02 AC 40 ms
53,376 KB
testcase_03 AC 678 ms
153,608 KB
testcase_04 AC 41 ms
53,376 KB
testcase_05 AC 659 ms
153,600 KB
testcase_06 AC 42 ms
53,760 KB
testcase_07 AC 444 ms
163,356 KB
testcase_08 AC 552 ms
163,744 KB
testcase_09 AC 532 ms
160,968 KB
testcase_10 AC 527 ms
165,036 KB
testcase_11 AC 555 ms
162,520 KB
testcase_12 AC 588 ms
161,444 KB
testcase_13 AC 610 ms
156,952 KB
testcase_14 AC 353 ms
147,452 KB
testcase_15 AC 42 ms
53,760 KB
testcase_16 AC 42 ms
53,888 KB
testcase_17 AC 41 ms
53,760 KB
testcase_18 AC 43 ms
53,632 KB
testcase_19 AC 42 ms
53,632 KB
testcase_20 AC 99 ms
77,568 KB
testcase_21 AC 103 ms
77,696 KB
testcase_22 AC 92 ms
77,056 KB
testcase_23 AC 87 ms
76,928 KB
testcase_24 AC 95 ms
77,312 KB
testcase_25 AC 199 ms
93,116 KB
testcase_26 AC 519 ms
121,712 KB
testcase_27 AC 369 ms
107,180 KB
testcase_28 AC 726 ms
145,208 KB
testcase_29 AC 539 ms
135,396 KB
testcase_30 AC 395 ms
117,076 KB
testcase_31 AC 269 ms
102,584 KB
testcase_32 AC 390 ms
117,160 KB
testcase_33 AC 354 ms
111,396 KB
testcase_34 AC 160 ms
87,960 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