結果

問題 No.763 Noelちゃんと木遊び
ユーザー cielciel
提出日時 2021-07-31 09:52:42
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 164 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 30,336 KB
最終ジャッジ日時 2024-09-16 09:09:54
合計ジャッジ時間 7,920 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 185 ms
18,816 KB
testcase_02 AC 324 ms
26,496 KB
testcase_03 AC 240 ms
20,480 KB
testcase_04 AC 200 ms
19,072 KB
testcase_05 AC 235 ms
20,352 KB
testcase_06 AC 378 ms
29,824 KB
testcase_07 AC 362 ms
29,696 KB
testcase_08 AC 252 ms
20,608 KB
testcase_09 AC 191 ms
19,456 KB
testcase_10 AC 131 ms
14,208 KB
testcase_11 AC 385 ms
30,208 KB
testcase_12 AC 348 ms
28,288 KB
testcase_13 AC 353 ms
27,520 KB
testcase_14 AC 321 ms
26,624 KB
testcase_15 AC 237 ms
20,352 KB
testcase_16 AC 114 ms
13,440 KB
testcase_17 AC 237 ms
20,480 KB
testcase_18 AC 387 ms
30,080 KB
testcase_19 AC 351 ms
28,672 KB
testcase_20 AC 357 ms
28,544 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