結果

問題 No.763 Noelちゃんと木遊び
ユーザー cielciel
提出日時 2018-12-12 00:11:01
言語 Ruby
(3.3.0)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 164 bytes
コンパイル時間 70 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 30,080 KB
最終ジャッジ日時 2024-09-24 17:36:02
合計ジャッジ時間 7,358 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 183 ms
18,944 KB
testcase_02 AC 324 ms
26,624 KB
testcase_03 AC 242 ms
20,480 KB
testcase_04 AC 200 ms
19,072 KB
testcase_05 AC 237 ms
20,352 KB
testcase_06 AC 388 ms
29,952 KB
testcase_07 AC 367 ms
29,568 KB
testcase_08 AC 250 ms
20,608 KB
testcase_09 AC 191 ms
19,200 KB
testcase_10 AC 131 ms
14,336 KB
testcase_11 AC 392 ms
30,080 KB
testcase_12 AC 352 ms
28,032 KB
testcase_13 AC 349 ms
27,648 KB
testcase_14 AC 314 ms
26,496 KB
testcase_15 AC 237 ms
20,352 KB
testcase_16 AC 116 ms
13,568 KB
testcase_17 AC 240 ms
20,352 KB
testcase_18 AC 389 ms
29,952 KB
testcase_19 AC 374 ms
28,544 KB
testcase_20 AC 361 ms
28,672 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

h=Hash.new{|h,k|h[k]=[]}
v={}
r=0
f=->j{a=true;v[j]=1;h[j].each{|e|!v[e]&&f[e]&&a=false};a&&r+=1;a}
gets;$<.each{|e|a,b=e.split.map &:to_i;h[a]<<b;h[b]<<a}
f[1];p r
0