結果

問題 No.92 逃走経路
ユーザー gigurururugigurururu
提出日時 2014-12-07 21:39:21
言語 Ruby
(3.3.0)
結果
AC  
実行時間 383 ms / 5,000 ms
コード長 219 bytes
コンパイル時間 46 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 42,496 KB
最終ジャッジ日時 2024-06-08 01:16:22
合計ジャッジ時間 3,959 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
14,976 KB
testcase_01 AC 83 ms
12,288 KB
testcase_02 AC 80 ms
12,288 KB
testcase_03 AC 82 ms
12,288 KB
testcase_04 AC 83 ms
12,288 KB
testcase_05 AC 349 ms
37,760 KB
testcase_06 AC 92 ms
12,800 KB
testcase_07 AC 91 ms
12,800 KB
testcase_08 AC 87 ms
12,288 KB
testcase_09 AC 125 ms
15,104 KB
testcase_10 AC 367 ms
27,136 KB
testcase_11 AC 346 ms
26,496 KB
testcase_12 AC 383 ms
42,496 KB
testcase_13 AC 104 ms
17,280 KB
testcase_14 AC 110 ms
16,768 KB
testcase_15 AC 118 ms
17,536 KB
testcase_16 AC 110 ms
14,336 KB
testcase_17 AC 107 ms
14,976 KB
testcase_18 AC 101 ms
14,720 KB
testcase_19 AC 92 ms
13,568 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def g;gets.split.map(&:to_i)end
n,m=g
l=Hash.new{|h,k|h[k]=Hash.new{[]}}
m.times{
  a,b,c=g
  l[c][a]+=[b]
  l[c][b]+=[a]
}
now=*1..n
g.each{|c|now=l[c].values_at(*now).flatten.uniq}
puts now.size,now.sort*" "
0