結果

問題 No.2427 Tree Distance Two
ユーザー gr1msl3ygr1msl3y
提出日時 2023-08-21 10:40:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 826 ms / 2,000 ms
コード長 395 bytes
コンパイル時間 352 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 161,536 KB
最終ジャッジ日時 2024-05-08 16:00:29
合計ジャッジ時間 16,402 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,224 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 37 ms
52,352 KB
testcase_03 AC 781 ms
152,320 KB
testcase_04 AC 37 ms
51,840 KB
testcase_05 AC 826 ms
150,200 KB
testcase_06 AC 38 ms
52,224 KB
testcase_07 AC 589 ms
150,896 KB
testcase_08 AC 686 ms
160,052 KB
testcase_09 AC 643 ms
161,456 KB
testcase_10 AC 672 ms
161,536 KB
testcase_11 AC 638 ms
147,256 KB
testcase_12 AC 691 ms
144,632 KB
testcase_13 AC 738 ms
142,308 KB
testcase_14 AC 347 ms
136,732 KB
testcase_15 AC 38 ms
52,480 KB
testcase_16 AC 39 ms
52,608 KB
testcase_17 AC 37 ms
52,352 KB
testcase_18 AC 39 ms
53,120 KB
testcase_19 AC 38 ms
52,608 KB
testcase_20 AC 96 ms
77,440 KB
testcase_21 AC 98 ms
77,792 KB
testcase_22 AC 89 ms
76,800 KB
testcase_23 AC 84 ms
77,056 KB
testcase_24 AC 94 ms
77,568 KB
testcase_25 AC 226 ms
95,916 KB
testcase_26 AC 485 ms
122,888 KB
testcase_27 AC 353 ms
110,592 KB
testcase_28 AC 728 ms
147,736 KB
testcase_29 AC 637 ms
139,264 KB
testcase_30 AC 463 ms
120,624 KB
testcase_31 AC 308 ms
100,000 KB
testcase_32 AC 488 ms
112,336 KB
testcase_33 AC 421 ms
116,452 KB
testcase_34 AC 177 ms
88,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dist=[0]*(N+1)
par=[-1]*(N+1)
task=[1]
for v in task:
	for u in graph[v]:
		if u==par[v]: continue
		par[u]=v
		task.append(u)
		dist[u]=dist[v]+1

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

print(*ans[1:],sep='\n')
0