結果

問題 No.697 池の数はいくつか
ユーザー rlangevinrlangevin
提出日時 2023-01-26 20:36:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,214 ms / 6,000 ms
コード長 857 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 81,992 KB
実行使用メモリ 281,472 KB
最終ジャッジ日時 2024-06-27 12:00:06
合計ジャッジ時間 15,226 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,632 KB
testcase_01 AC 43 ms
53,760 KB
testcase_02 AC 41 ms
53,492 KB
testcase_03 AC 42 ms
53,760 KB
testcase_04 AC 41 ms
54,016 KB
testcase_05 AC 44 ms
54,016 KB
testcase_06 AC 41 ms
54,016 KB
testcase_07 AC 40 ms
53,632 KB
testcase_08 AC 40 ms
53,568 KB
testcase_09 AC 40 ms
54,144 KB
testcase_10 AC 40 ms
53,760 KB
testcase_11 AC 41 ms
53,632 KB
testcase_12 AC 40 ms
53,632 KB
testcase_13 AC 41 ms
53,888 KB
testcase_14 AC 41 ms
54,272 KB
testcase_15 AC 41 ms
53,632 KB
testcase_16 AC 41 ms
54,016 KB
testcase_17 AC 45 ms
53,608 KB
testcase_18 AC 42 ms
54,016 KB
testcase_19 AC 41 ms
53,504 KB
testcase_20 AC 41 ms
53,888 KB
testcase_21 AC 43 ms
53,632 KB
testcase_22 AC 41 ms
53,632 KB
testcase_23 AC 41 ms
53,632 KB
testcase_24 AC 257 ms
95,976 KB
testcase_25 AC 249 ms
95,680 KB
testcase_26 AC 252 ms
95,744 KB
testcase_27 AC 256 ms
95,688 KB
testcase_28 AC 249 ms
95,616 KB
testcase_29 AC 2,214 ms
281,152 KB
testcase_30 AC 1,604 ms
266,112 KB
testcase_31 AC 2,127 ms
281,472 KB
testcase_32 AC 1,585 ms
265,992 KB
testcase_33 AC 1,569 ms
266,112 KB
testcase_34 AC 1,555 ms
266,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

H, W = map(int, input().split())
G = []
for i in range(H):
    G.append(list(map(int, input().split())))
    
seen = [0] * (H * W)
ans = 0
Q = deque()
dx = [1, 0, -1, 0]
dy = [0, 1, 0, -1]
for i in range(H):
    for j in range(W):
        if not G[i][j]:
            continue
        if seen[i*W+j]:
            continue
        seen[i*W+j] = 1
        ans += 1
        Q.append(i*W+j)
        while Q:
            px, py = divmod(Q.popleft(), W)
            for k in range(4):
                x = px + dx[k]
                y = py + dy[k]
                if x < 0 or x > H - 1 or y < 0 or y > W - 1:
                    continue
                if seen[x*W+y]:
                    continue
                if not G[x][y]:
                    continue
                seen[x*W+y] = 1
                Q.append(x * W + y)
print(ans)
0