結果
問題 | No.402 最も海から遠い場所 |
ユーザー | Leonardone |
提出日時 | 2016-07-23 04:34:10 |
言語 | Ruby (3.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,421 bytes |
コンパイル時間 | 289 ms |
コンパイル使用メモリ | 7,424 KB |
実行使用メモリ | 18,976 KB |
最終ジャッジ日時 | 2024-11-06 14:26:22 |
合計ジャッジ時間 | 13,073 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 94 ms
18,976 KB |
testcase_01 | AC | 91 ms
12,160 KB |
testcase_02 | AC | 127 ms
12,288 KB |
testcase_03 | AC | 90 ms
12,160 KB |
testcase_04 | AC | 91 ms
12,160 KB |
testcase_05 | AC | 94 ms
12,160 KB |
testcase_06 | AC | 89 ms
12,160 KB |
testcase_07 | AC | 89 ms
12,160 KB |
testcase_08 | AC | 87 ms
12,160 KB |
testcase_09 | AC | 91 ms
12,160 KB |
testcase_10 | AC | 91 ms
12,160 KB |
testcase_11 | AC | 107 ms
12,288 KB |
testcase_12 | AC | 100 ms
12,160 KB |
testcase_13 | AC | 479 ms
12,288 KB |
testcase_14 | AC | 248 ms
12,416 KB |
testcase_15 | AC | 2,132 ms
13,440 KB |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
コンパイルメッセージ
Syntax OK
ソースコード
# yukicoder My Practice # author: Leonardone @ NEETSDKASU ############################################################ def gs() gets.chomp end def gi() gets.to_i end def gf() gets.to_f end def gss() gs.split end def gis() gss.map(&:to_i) end def gfs() gss.map(&:to_f) end def nmapf(n,f) n.times.map{ __send__ f } end def ngs(n) nmapf n,:gs end def ngi(n) nmapf n,:gi end def ngss(n) nmapf n,:gss end def ngis(n) nmapf n,:gis end def arr2d(h,w,v=0) h.times.map{[v] * w} end def for2p(hr,wr,&pr) hr.each{|i|wr.each{|j| yield(i,j)}} end def nsum(n) n * (n + 1) / 2 end def vcount(d,r=Hash.new(0)) d.inject(r){|m,e| m[e]+=1;m} end MV4 = [[0, 1], [1, 0], [0, -1], [-1, 0]] MV8 = MV4 + [[1, 1], [-1, -1], [1, -1], [-1, 1]] ############################################################ H, W = gis m = ['.' * (W + 2)] + ngs(H).map{|r| '.' + r + '.' } + ['.' * (W + 2)] f = '.' g = ',' d = 0 loop do c = 0 (H + 2).times do |y| (W + 2).times do |x| next if m[y][x] != f m[y][x] = '_' MV8.each do |dy, dx| ey = y + dy ex = x + dx next if !(0...H + 2).include? ey next if !(0...W + 2).include? ex next if m[ey][ex] != '#' m[ey][ex] = g c += 1 end end end f, g = g, f if c == 0 break else d += 1 end end puts d