結果

問題 No.697 池の数はいくつか
ユーザー dangodango
提出日時 2023-06-14 16:57:22
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 709 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 247,496 KB
最終ジャッジ日時 2024-06-23 00:53:20
合計ジャッジ時間 18,684 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,352 KB
testcase_01 AC 35 ms
52,224 KB
testcase_02 AC 34 ms
52,224 KB
testcase_03 AC 34 ms
52,352 KB
testcase_04 AC 36 ms
52,224 KB
testcase_05 AC 33 ms
52,224 KB
testcase_06 AC 35 ms
52,480 KB
testcase_07 AC 35 ms
52,224 KB
testcase_08 AC 35 ms
52,224 KB
testcase_09 AC 34 ms
52,224 KB
testcase_10 AC 34 ms
52,480 KB
testcase_11 AC 34 ms
52,096 KB
testcase_12 AC 34 ms
52,096 KB
testcase_13 AC 36 ms
52,352 KB
testcase_14 AC 37 ms
52,352 KB
testcase_15 AC 36 ms
52,224 KB
testcase_16 AC 34 ms
51,968 KB
testcase_17 AC 36 ms
52,224 KB
testcase_18 AC 37 ms
51,968 KB
testcase_19 AC 35 ms
51,840 KB
testcase_20 AC 34 ms
52,352 KB
testcase_21 AC 34 ms
52,352 KB
testcase_22 AC 35 ms
52,480 KB
testcase_23 AC 36 ms
52,352 KB
testcase_24 AC 354 ms
94,336 KB
testcase_25 AC 359 ms
94,336 KB
testcase_26 AC 347 ms
94,336 KB
testcase_27 AC 386 ms
94,848 KB
testcase_28 AC 453 ms
95,488 KB
testcase_29 RE -
testcase_30 AC 2,754 ms
244,532 KB
testcase_31 RE -
testcase_32 AC 2,630 ms
243,328 KB
testcase_33 AC 2,878 ms
247,496 KB
testcase_34 AC 2,662 ms
244,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def count_ponds(field):
    H = len(field)
    W = len(field[0])
    visited = [[False for _ in range(W)] for _ in range(H)]
    def dfs(x, y):
        if x < 0 or x >= H or y < 0 or y >= W:
            return
        if field[x][y] == 0 or visited[x][y]:
            return
        visited[x][y] = True
        dfs(x+1, y)
        dfs(x-1, y)
        dfs(x, y+1)
        dfs(x, y-1)
    count = 0
    for i in range(H):
        for j in range(W):
            if field[i][j] == 1 and not visited[i][j]:
                dfs(i, j)
                count += 1
    return count
field = []
H, W = map(int, input().split())
for _ in range(H):
  field.append(list(map(int, input().split())))
print(count_ponds(field))
0