結果

問題 No.157 2つの空洞
ユーザー 👑 hos.lyrichos.lyric
提出日時 2015-02-27 02:14:36
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,387 ms / 2,000 ms
コード長 330 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,544 KB
最終ジャッジ日時 2024-06-23 22:22:34
合計ジャッジ時間 11,896 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
12,416 KB
testcase_01 AC 153 ms
12,544 KB
testcase_02 AC 183 ms
12,288 KB
testcase_03 AC 207 ms
12,288 KB
testcase_04 AC 250 ms
12,544 KB
testcase_05 AC 299 ms
12,288 KB
testcase_06 AC 385 ms
12,288 KB
testcase_07 AC 193 ms
12,416 KB
testcase_08 AC 184 ms
12,288 KB
testcase_09 AC 295 ms
12,288 KB
testcase_10 AC 206 ms
12,544 KB
testcase_11 AC 451 ms
12,288 KB
testcase_12 AC 610 ms
12,288 KB
testcase_13 AC 738 ms
12,288 KB
testcase_14 AC 986 ms
12,544 KB
testcase_15 AC 1,027 ms
12,288 KB
testcase_16 AC 1,079 ms
12,416 KB
testcase_17 AC 1,387 ms
12,544 KB
testcase_18 AC 1,023 ms
12,288 KB
testcase_19 AC 1,015 ms
12,416 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n,m=gets.split.map &:to_i
a=(1..m).map{gets}
c=999
(0...m).any?{|x|(0...n).any?{|y|a[x][y]>?-&&(a[x][y]=?!
c.times{m.times{|x|n.times{|y|[[x+1,y],[x,y+1],[x-1,y],[x,y-1]].map{|z,w|a[x][y]<?"&&a[z][w]>?-&&(a[z][w]=?!)}}}})}}
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