結果

問題 No.697 池の数はいくつか
ユーザー letrangerjpletrangerjp
提出日時 2018-06-15 22:13:36
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 499 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 164,640 KB
最終ジャッジ日時 2024-05-04 05:55:27
合計ジャッジ時間 20,587 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
12,160 KB
testcase_01 AC 75 ms
12,032 KB
testcase_02 AC 79 ms
12,160 KB
testcase_03 AC 77 ms
12,160 KB
testcase_04 AC 79 ms
12,288 KB
testcase_05 AC 82 ms
12,160 KB
testcase_06 AC 80 ms
12,160 KB
testcase_07 AC 80 ms
12,160 KB
testcase_08 AC 77 ms
12,160 KB
testcase_09 AC 75 ms
12,288 KB
testcase_10 AC 77 ms
12,032 KB
testcase_11 AC 80 ms
12,288 KB
testcase_12 AC 80 ms
12,160 KB
testcase_13 AC 82 ms
12,032 KB
testcase_14 AC 82 ms
12,288 KB
testcase_15 AC 84 ms
12,160 KB
testcase_16 AC 78 ms
12,160 KB
testcase_17 AC 76 ms
12,032 KB
testcase_18 AC 79 ms
12,032 KB
testcase_19 AC 82 ms
12,288 KB
testcase_20 AC 79 ms
12,288 KB
testcase_21 AC 79 ms
12,032 KB
testcase_22 AC 80 ms
12,032 KB
testcase_23 AC 80 ms
12,160 KB
testcase_24 AC 1,432 ms
30,720 KB
testcase_25 AC 1,471 ms
30,592 KB
testcase_26 AC 1,442 ms
30,592 KB
testcase_27 AC 1,469 ms
30,592 KB
testcase_28 AC 1,452 ms
30,976 KB
testcase_29 RE -
testcase_30 TLE -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

# https://yukicoder.me/problems/no/697
H, W = gets.split.map &:to_i
board = $<.map{|s|s.split.map &:to_i}
used = H.times.map{[false] * W}

DIRS = [[0, 1], [0, -1], [1, 0], [-1, 0]]

f = ->y, x{
  return if !y.between?(0, H-1)
  return if !x.between?(0, W-1)
  return if board[y][x] == 0
  return if used[y][x]
  used[y][x] = true
  DIRS.each{|dy, dx|
    f[y+dy, x+dx]
  }
}

ans = 0
H.times{|i|
  W.times{|j|
    next if board[i][j] == 0
    next if used[i][j]
    ans += 1
    f[i, j]
  }
}
p ans
0