結果

問題 No.697 池の数はいくつか
ユーザー はにはにはにはに
提出日時 2025-01-06 23:12:49
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 875 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 82,652 KB
実行使用メモリ 849,672 KB
最終ジャッジ日時 2025-01-06 23:13:18
合計ジャッジ時間 23,634 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
55,392 KB
testcase_01 AC 34 ms
55,132 KB
testcase_02 AC 36 ms
54,524 KB
testcase_03 AC 34 ms
53,840 KB
testcase_04 AC 35 ms
54,708 KB
testcase_05 AC 34 ms
55,164 KB
testcase_06 AC 34 ms
54,504 KB
testcase_07 AC 35 ms
54,636 KB
testcase_08 AC 36 ms
54,524 KB
testcase_09 AC 34 ms
54,256 KB
testcase_10 AC 36 ms
53,920 KB
testcase_11 AC 35 ms
55,340 KB
testcase_12 AC 36 ms
55,456 KB
testcase_13 AC 36 ms
54,888 KB
testcase_14 AC 36 ms
55,088 KB
testcase_15 AC 34 ms
54,080 KB
testcase_16 AC 36 ms
55,020 KB
testcase_17 AC 33 ms
54,676 KB
testcase_18 AC 35 ms
54,132 KB
testcase_19 AC 35 ms
54,552 KB
testcase_20 AC 36 ms
55,140 KB
testcase_21 AC 35 ms
54,480 KB
testcase_22 AC 36 ms
55,508 KB
testcase_23 AC 35 ms
54,108 KB
testcase_24 AC 598 ms
217,252 KB
testcase_25 AC 583 ms
217,196 KB
testcase_26 AC 554 ms
217,192 KB
testcase_27 AC 578 ms
217,272 KB
testcase_28 AC 553 ms
217,280 KB
testcase_29 MLE -
testcase_30 MLE -
testcase_31 MLE -
testcase_32 MLE -
testcase_33 MLE -
testcase_34 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
h, w = map(int, input().split())
grid = [list(input().split()) for _ in range(h)]

sensor = set()
q = deque()
visited = [[False for _ in range(w)] for _ in range(h)]
for j in range(h):
    for i in range(w):
        if grid[j][i] == '1':
            sensor.add((i, j))
count = 0
while sensor:
    q.append(sensor.pop())
    while q:
        x, y = q.popleft()
        if (x, y) in sensor:
            sensor.remove((x, y))
        
        for dx, dy in [(0, 1), (0, -1), (1, 0), (-1, 0)]:
            nx, ny = x + dx, y + dy
            if nx < 0 or w <= nx or ny < 0 or h <= ny:
                continue
            if grid[ny][nx] == '0':
                continue
            if not visited[ny][nx] and grid[ny][nx] == '1':
                visited[ny][nx] = True
                q.append((nx, ny))
                
    count += 1
print(count)
0