結果

問題 No.2427 Tree Distance Two
ユーザー 310icecrystal310icecrystal
提出日時 2023-08-18 21:19:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 747 ms / 2,000 ms
コード長 296 bytes
コンパイル時間 518 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 200,340 KB
最終ジャッジ日時 2024-05-06 03:04:11
合計ジャッジ時間 14,028 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 35 ms
51,712 KB
testcase_02 AC 35 ms
51,712 KB
testcase_03 AC 736 ms
163,512 KB
testcase_04 AC 35 ms
51,840 KB
testcase_05 AC 747 ms
163,584 KB
testcase_06 AC 36 ms
51,968 KB
testcase_07 AC 618 ms
198,700 KB
testcase_08 AC 686 ms
194,304 KB
testcase_09 AC 634 ms
195,156 KB
testcase_10 AC 641 ms
200,340 KB
testcase_11 AC 675 ms
194,628 KB
testcase_12 AC 699 ms
188,276 KB
testcase_13 AC 700 ms
179,628 KB
testcase_14 AC 377 ms
163,124 KB
testcase_15 AC 37 ms
52,480 KB
testcase_16 AC 37 ms
52,864 KB
testcase_17 AC 36 ms
52,224 KB
testcase_18 AC 35 ms
52,480 KB
testcase_19 AC 35 ms
51,968 KB
testcase_20 AC 86 ms
77,952 KB
testcase_21 AC 92 ms
78,396 KB
testcase_22 AC 80 ms
77,312 KB
testcase_23 AC 73 ms
75,268 KB
testcase_24 AC 88 ms
78,160 KB
testcase_25 AC 218 ms
99,072 KB
testcase_26 AC 449 ms
130,476 KB
testcase_27 AC 325 ms
114,988 KB
testcase_28 AC 681 ms
157,444 KB
testcase_29 AC 618 ms
147,332 KB
testcase_30 AC 442 ms
128,512 KB
testcase_31 AC 301 ms
109,968 KB
testcase_32 AC 449 ms
127,916 KB
testcase_33 AC 399 ms
122,004 KB
testcase_34 AC 156 ms
90,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
graph = [set() for _ in range(N+1)]
for _ in range(N-1):
    u,v = map(int,input().split())
    graph[u].add(v)
    graph[v].add(u)

ans = [0]*(N+1)
for i in range(1,N+1):
    m = len(graph[i])
    for v in graph[i]:
        ans[v] += m-1
for v in range(1,N+1):
    print(ans[v])
0