結果

問題 No.157 2つの空洞
ユーザー 👑 hos.lyrichos.lyric
提出日時 2015-02-27 02:21:35
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 318 bytes
コンパイル時間 80 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 96,992 KB
最終ジャッジ日時 2024-06-23 22:25:02
合計ジャッジ時間 5,793 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
19,236 KB
testcase_01 AC 90 ms
12,416 KB
testcase_02 AC 89 ms
12,288 KB
testcase_03 AC 88 ms
12,288 KB
testcase_04 AC 92 ms
12,544 KB
testcase_05 AC 95 ms
12,416 KB
testcase_06 AC 101 ms
12,416 KB
testcase_07 AC 87 ms
12,160 KB
testcase_08 AC 90 ms
12,416 KB
testcase_09 AC 92 ms
12,544 KB
testcase_10 AC 90 ms
12,288 KB
testcase_11 AC 99 ms
12,544 KB
testcase_12 AC 120 ms
12,288 KB
testcase_13 AC 135 ms
12,544 KB
testcase_14 AC 166 ms
15,104 KB
testcase_15 AC 167 ms
13,568 KB
testcase_16 AC 176 ms
12,288 KB
testcase_17 TLE -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n,m=gets.split.map &:to_i
a=(1..m).map{gets}
(0...m).any?{|x|(0...n).any?{|y|a[x][y]>?-&&(q=[x,y]
(a[x=q.shift][y=q.shift]=?!;[[x+1,y],[x,y+1],[x-1,y],[x,y-1]].map{|z,w|a[z][w]>?-&&q+=[z,w]})while[]!=q;0)}}
c=99
m.times{|x|n.times{|y|m.times{|z|n.times{|w|a[x][y]+a[z][w]==".!"&&c=[c,(x-z).abs+(y-w).abs-1].min}}}}
p c
0