結果

問題 No.1484 木に数を書き込む問題 / Just Write Numbers! 2
ユーザー cielciel
提出日時 2021-05-12 02:27:01
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 263 bytes
コンパイル時間 79 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 33,024 KB
最終ジャッジ日時 2024-09-22 08:31:16
合計ジャッジ時間 18,265 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
12,416 KB
testcase_01 AC 97 ms
12,416 KB
testcase_02 AC 90 ms
12,160 KB
testcase_03 AC 89 ms
12,416 KB
testcase_04 AC 104 ms
12,672 KB
testcase_05 AC 143 ms
13,312 KB
testcase_06 AC 144 ms
13,312 KB
testcase_07 AC 120 ms
13,184 KB
testcase_08 AC 158 ms
13,696 KB
testcase_09 AC 146 ms
13,696 KB
testcase_10 AC 144 ms
13,440 KB
testcase_11 AC 136 ms
13,312 KB
testcase_12 AC 129 ms
13,184 KB
testcase_13 AC 94 ms
12,416 KB
testcase_14 AC 686 ms
28,288 KB
testcase_15 AC 662 ms
27,648 KB
testcase_16 AC 623 ms
23,936 KB
testcase_17 AC 489 ms
22,656 KB
testcase_18 AC 764 ms
29,824 KB
testcase_19 AC 874 ms
31,232 KB
testcase_20 AC 889 ms
31,360 KB
testcase_21 AC 873 ms
31,616 KB
testcase_22 AC 877 ms
31,360 KB
testcase_23 AC 890 ms
31,360 KB
testcase_24 AC 881 ms
31,360 KB
testcase_25 AC 874 ms
31,360 KB
testcase_26 AC 872 ms
31,360 KB
testcase_27 AC 861 ms
31,232 KB
testcase_28 AC 877 ms
31,232 KB
testcase_29 RE -
testcase_30 RE -
testcase_31 AC 708 ms
30,592 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def dfs(z,c)
	f=1
	r=[0,c]
	G[c].each{|e|
		next if e==z
		t=dfs(c,e)
		r=[r,[t[0]+f,t[1]]].max
	}
	r
end
def diameter
	dfs(-1,dfs(-1,0)[1])[0]
end
N=gets.to_i
G=N.times.map{[]}
(N-1).times{
	a,b=gets.split.map(&:to_i)
	G[a-1]<<b-1
	G[b-1]<<a-1
}
p 2*~-N-diameter
0