結果

問題 No.697 池の数はいくつか
ユーザー simansiman
提出日時 2021-01-10 19:52:18
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 435 bytes
コンパイル時間 381 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 94,236 KB
最終ジャッジ日時 2024-05-04 07:17:53
合計ジャッジ時間 19,968 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

H, W = gets.split.map(&:to_i)
A = H.times.map { gets.split.map(&:to_i) }
DY = [-1, 0, 1, 0]
DX = [0, 1, 0, -1]

def f(y, x)
  return if A[y][x] == 0
  A[y][x] = 0

  4.times do |i|
    ny = y + DY[i]
    nx = x + DX[i]
    next if ny < 0 || nx < 0 || H <= ny || W <= nx
    next if A[ny][nx] == 0

    f(ny, nx)
  end
end

ans = 0

H.times do |y|
  W.times do |x|
    next if A[y][x] == 0

    ans += 1
    f(y, x)
  end
end

puts ans
0