結果

問題 No.277 根掘り葉掘り
ユーザー TawaraTawara
提出日時 2015-09-05 01:18:45
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 360 bytes
コンパイル時間 621 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 49,836 KB
最終ジャッジ日時 2024-07-19 03:01:28
合計ジャッジ時間 5,603 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = input()
e = [[] for i in range(N)]
S = [N]*N
l = []
for i in range(N-1):
	x,y = map(int,raw_input().split())
	e[x-1] += [y-1]
	e[y-1] += [x-1]
for i in range(N):
	if len(e[i]) == 1:
		l += [(i,i)]
d = 0
while l:
	nl = []
	for b,h in l:
		S[h] = d
		nl += [(h,nxt) for nxt in e[h] if nxt != b and d+1 < S[nxt]]
	d += 1
	l = nl
for i in range(N):
	print S[i]
0