結果

問題 No.2427 Tree Distance Two
ユーザー anonymouslyanonymously
提出日時 2023-08-18 21:52:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 191 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 114,304 KB
最終ジャッジ日時 2024-11-28 06:40:04
合計ジャッジ時間 48,319 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
16,000 KB
testcase_01 AC 25 ms
114,304 KB
testcase_02 AC 25 ms
15,872 KB
testcase_03 TLE -
testcase_04 AC 26 ms
16,000 KB
testcase_05 TLE -
testcase_06 AC 25 ms
15,872 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 1,910 ms
104,192 KB
testcase_15 AC 25 ms
10,624 KB
testcase_16 AC 26 ms
10,752 KB
testcase_17 AC 26 ms
10,624 KB
testcase_18 AC 26 ms
10,752 KB
testcase_19 AC 27 ms
10,624 KB
testcase_20 AC 80 ms
13,312 KB
testcase_21 AC 103 ms
13,568 KB
testcase_22 AC 44 ms
11,520 KB
testcase_23 AC 36 ms
11,136 KB
testcase_24 AC 82 ms
13,184 KB
testcase_25 AC 724 ms
35,200 KB
testcase_26 TLE -
testcase_27 AC 1,333 ms
52,352 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 1,977 ms
66,560 KB
testcase_31 AC 1,193 ms
47,232 KB
testcase_32 AC 1,885 ms
66,048 KB
testcase_33 AC 1,671 ms
59,776 KB
testcase_34 AC 449 ms
113,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
S=[set()]*(n+1)
for i in range(n-1):
	u,v=map(int,input().split())
	S[u]=S[u]|{v}
	S[v]=S[v]|{u}

for i in range(1,n+1):
	T=set()
	for j in S[i]:
		T=T|S[j]
	print(len(T-{i}))
0