結果

問題 No.763 Noelちゃんと木遊び
ユーザー cielciel
提出日時 2018-12-12 00:46:18
言語 Crystal
(1.11.2)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 263 bytes
コンパイル時間 12,152 ms
コンパイル使用メモリ 296,292 KB
実行使用メモリ 25,328 KB
最終ジャッジ日時 2024-06-30 19:41:13
合計ジャッジ時間 14,900 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
25,328 KB
testcase_01 AC 35 ms
11,276 KB
testcase_02 AC 88 ms
19,416 KB
testcase_03 AC 61 ms
11,392 KB
testcase_04 AC 41 ms
10,808 KB
testcase_05 AC 54 ms
11,520 KB
testcase_06 AC 108 ms
17,656 KB
testcase_07 AC 116 ms
17,332 KB
testcase_08 AC 56 ms
11,904 KB
testcase_09 AC 36 ms
9,600 KB
testcase_10 AC 14 ms
6,944 KB
testcase_11 AC 119 ms
17,860 KB
testcase_12 AC 105 ms
18,344 KB
testcase_13 AC 97 ms
17,180 KB
testcase_14 AC 88 ms
18,656 KB
testcase_15 AC 57 ms
11,392 KB
testcase_16 AC 10 ms
6,944 KB
testcase_17 AC 58 ms
11,392 KB
testcase_18 AC 137 ms
17,768 KB
testcase_19 AC 110 ms
17,212 KB
testcase_20 AC 103 ms
17,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H=Hash(Int32,Array(Int32)).new{|h,k|h[k]=[] of Int32}
V=Hash(Int32,Int32).new
R=[0]
def f(j);a=true;V[j]=1;H[j].each{|e|!V.has_key?(e)&&f(e)&&(a=false)};a&&(R[0]+=1);a end
(gets.not_nil!.to_i-1).times{a,b=gets.not_nil!.split.map &.to_i;H[a]<<b;H[b]<<a}
f 1;p R[0]
0