結果

問題 No.2427 Tree Distance Two
ユーザー minimumminimum
提出日時 2023-08-18 21:36:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 732 ms / 2,000 ms
コード長 277 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 124,544 KB
最終ジャッジ日時 2024-11-28 06:03:46
合計ジャッジ時間 13,793 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,584 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 AC 720 ms
111,616 KB
testcase_04 AC 42 ms
51,200 KB
testcase_05 AC 732 ms
112,000 KB
testcase_06 AC 41 ms
51,584 KB
testcase_07 AC 562 ms
123,816 KB
testcase_08 AC 635 ms
123,648 KB
testcase_09 AC 581 ms
123,392 KB
testcase_10 AC 593 ms
124,544 KB
testcase_11 AC 603 ms
122,040 KB
testcase_12 AC 649 ms
120,196 KB
testcase_13 AC 674 ms
117,292 KB
testcase_14 AC 335 ms
110,336 KB
testcase_15 AC 42 ms
51,968 KB
testcase_16 AC 44 ms
52,480 KB
testcase_17 AC 43 ms
51,840 KB
testcase_18 AC 44 ms
52,224 KB
testcase_19 AC 43 ms
51,840 KB
testcase_20 AC 109 ms
76,416 KB
testcase_21 AC 113 ms
76,800 KB
testcase_22 AC 101 ms
76,672 KB
testcase_23 AC 104 ms
75,776 KB
testcase_24 AC 111 ms
76,928 KB
testcase_25 AC 217 ms
85,632 KB
testcase_26 AC 436 ms
98,048 KB
testcase_27 AC 319 ms
92,032 KB
testcase_28 AC 665 ms
109,312 KB
testcase_29 AC 604 ms
105,344 KB
testcase_30 AC 441 ms
97,536 KB
testcase_31 AC 286 ms
89,856 KB
testcase_32 AC 441 ms
97,152 KB
testcase_33 AC 389 ms
94,720 KB
testcase_34 AC 172 ms
82,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
edges = [[] for _ in range(N)]
for _ in range(N - 1):
    u, v = map(lambda x: x - 1, map(int, input().split()))
    edges[u].append(v)
    edges[v].append(u)
for u in range(N):
    ans = 0
    for v in edges[u]:
        ans += len(edges[v]) - 1
    print(ans)
0