結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 88 ms
12,288 KB
testcase_03 AC 88 ms
12,544 KB
testcase_04 AC 95 ms
12,416 KB
testcase_05 AC 89 ms
12,288 KB
testcase_06 AC 96 ms
12,544 KB
testcase_07 AC 88 ms
12,288 KB
testcase_08 AC 90 ms
12,160 KB
testcase_09 AC 89 ms
12,288 KB
testcase_10 AC 89 ms
12,544 KB
testcase_11 AC 101 ms
12,416 KB
testcase_12 AC 120 ms
12,544 KB
testcase_13 AC 135 ms
12,288 KB
testcase_14 AC 145 ms
12,544 KB
testcase_15 AC 160 ms
12,288 KB
testcase_16 AC 172 ms
12,416 KB
testcase_17 AC 177 ms
12,416 KB
testcase_18 AC 177 ms
12,416 KB
testcase_19 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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]
(x=q.shift;y=q.shift;[[x+1,y],[x,y+1],[x-1,y],[x,y-1]].map{|z,w|a[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