結果

問題 No.2427 Tree Distance Two
ユーザー fiblonariafiblonaria
提出日時 2023-08-24 13:27:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 845 ms / 2,000 ms
コード長 245 bytes
コンパイル時間 569 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 202,840 KB
最終ジャッジ日時 2024-06-02 03:48:13
合計ジャッジ時間 15,397 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
53,048 KB
testcase_01 AC 33 ms
52,328 KB
testcase_02 AC 33 ms
52,660 KB
testcase_03 AC 845 ms
161,560 KB
testcase_04 AC 32 ms
52,976 KB
testcase_05 AC 832 ms
161,544 KB
testcase_06 AC 33 ms
52,528 KB
testcase_07 AC 691 ms
200,612 KB
testcase_08 AC 754 ms
195,112 KB
testcase_09 AC 724 ms
197,012 KB
testcase_10 AC 717 ms
202,840 KB
testcase_11 AC 695 ms
196,824 KB
testcase_12 AC 745 ms
190,920 KB
testcase_13 AC 772 ms
180,828 KB
testcase_14 AC 379 ms
161,308 KB
testcase_15 AC 34 ms
52,396 KB
testcase_16 AC 34 ms
53,568 KB
testcase_17 AC 33 ms
52,880 KB
testcase_18 AC 33 ms
53,196 KB
testcase_19 AC 32 ms
52,136 KB
testcase_20 AC 85 ms
77,716 KB
testcase_21 AC 93 ms
78,156 KB
testcase_22 AC 78 ms
77,360 KB
testcase_23 AC 83 ms
77,264 KB
testcase_24 AC 90 ms
77,908 KB
testcase_25 AC 231 ms
98,948 KB
testcase_26 AC 502 ms
129,144 KB
testcase_27 AC 367 ms
114,080 KB
testcase_28 AC 759 ms
155,300 KB
testcase_29 AC 668 ms
145,708 KB
testcase_30 AC 506 ms
127,944 KB
testcase_31 AC 333 ms
109,932 KB
testcase_32 AC 484 ms
127,532 KB
testcase_33 AC 424 ms
121,464 KB
testcase_34 AC 158 ms
90,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
con = [set() for i in range(N)]
for i in range(N - 1):
	A = list(map(int, input().split()))
	for j in range(2):
		con[A[j] - 1].add(A[1 - j] - 1)
for i in range(N):
	ans = 0
	for j in con[i]:
		ans += len(con[j]) - 1
	print(ans)
0