結果

問題 No.92 逃走経路
ユーザー gigurururugigurururu
提出日時 2014-12-07 21:39:21
言語 Ruby
(3.4.1)
結果
AC  
実行時間 484 ms / 5,000 ms
コード長 219 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 42,752 KB
最終ジャッジ日時 2024-12-26 14:31:41
合計ジャッジ時間 5,310 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 149 ms
14,720 KB
testcase_01 AC 106 ms
11,904 KB
testcase_02 AC 110 ms
12,032 KB
testcase_03 AC 112 ms
12,160 KB
testcase_04 AC 109 ms
12,160 KB
testcase_05 AC 449 ms
37,760 KB
testcase_06 AC 119 ms
12,544 KB
testcase_07 AC 119 ms
12,544 KB
testcase_08 AC 118 ms
12,288 KB
testcase_09 AC 161 ms
15,104 KB
testcase_10 AC 463 ms
24,320 KB
testcase_11 AC 435 ms
22,784 KB
testcase_12 AC 484 ms
42,752 KB
testcase_13 AC 141 ms
17,024 KB
testcase_14 AC 150 ms
16,512 KB
testcase_15 AC 157 ms
17,280 KB
testcase_16 AC 149 ms
14,208 KB
testcase_17 AC 149 ms
14,720 KB
testcase_18 AC 132 ms
14,336 KB
testcase_19 AC 127 ms
13,312 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