結果

問題 No.92 逃走経路
ユーザー gigurururugigurururu
提出日時 2014-12-07 21:24:13
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 191 bytes
コンパイル時間 73 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 21,788 KB
最終ジャッジ日時 2024-06-11 17:20:20
合計ジャッジ時間 10,032 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 76 ms
12,288 KB
testcase_02 AC 78 ms
12,160 KB
testcase_03 AC 74 ms
12,288 KB
testcase_04 AC 78 ms
12,288 KB
testcase_05 WA -
testcase_06 AC 80 ms
12,288 KB
testcase_07 AC 80 ms
12,544 KB
testcase_08 AC 80 ms
12,416 KB
testcase_09 AC 153 ms
12,416 KB
testcase_10 WA -
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def g;gets.split.map(&:to_i)end
n,m=g
l=Hash.new{[]}
m.times{
  *a,c=g
  l[c]+=[a]
}
now=*1..n
g.each{|c|now=l[c].flat_map{|a|a.select{|i|now.index(*(a-[i]))}}}
puts now.size,now*" "
0