結果

問題 No.697 池の数はいくつか
ユーザー dangodango
提出日時 2023-06-14 16:59:09
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 750 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 557,224 KB
最終ジャッジ日時 2024-06-23 00:54:55
合計ジャッジ時間 23,943 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 38 ms
52,352 KB
testcase_04 AC 38 ms
52,352 KB
testcase_05 AC 39 ms
52,480 KB
testcase_06 AC 37 ms
51,968 KB
testcase_07 AC 38 ms
52,352 KB
testcase_08 AC 39 ms
51,968 KB
testcase_09 AC 38 ms
51,840 KB
testcase_10 AC 37 ms
52,476 KB
testcase_11 AC 37 ms
52,480 KB
testcase_12 AC 38 ms
52,224 KB
testcase_13 AC 38 ms
52,352 KB
testcase_14 AC 38 ms
51,968 KB
testcase_15 AC 38 ms
52,608 KB
testcase_16 AC 38 ms
51,968 KB
testcase_17 AC 38 ms
52,096 KB
testcase_18 AC 39 ms
52,352 KB
testcase_19 AC 38 ms
52,736 KB
testcase_20 AC 38 ms
52,480 KB
testcase_21 AC 38 ms
52,128 KB
testcase_22 AC 39 ms
52,608 KB
testcase_23 AC 39 ms
51,968 KB
testcase_24 AC 378 ms
94,280 KB
testcase_25 AC 358 ms
94,420 KB
testcase_26 AC 394 ms
94,432 KB
testcase_27 AC 410 ms
94,676 KB
testcase_28 AC 430 ms
94,848 KB
testcase_29 MLE -
testcase_30 AC 2,918 ms
242,148 KB
testcase_31 MLE -
testcase_32 AC 2,848 ms
241,288 KB
testcase_33 AC 3,038 ms
247,284 KB
testcase_34 AC 2,900 ms
246,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(150000)
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