結果

問題 No.697 池の数はいくつか
ユーザー はにはにはにはに
提出日時 2025-01-06 23:16:43
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 838 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 849,648 KB
最終ジャッジ日時 2025-01-06 23:17:20
合計ジャッジ時間 26,291 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,560 KB
testcase_01 AC 36 ms
55,604 KB
testcase_02 AC 37 ms
54,340 KB
testcase_03 AC 36 ms
54,392 KB
testcase_04 AC 37 ms
55,044 KB
testcase_05 AC 39 ms
54,288 KB
testcase_06 AC 37 ms
54,460 KB
testcase_07 AC 44 ms
54,828 KB
testcase_08 AC 37 ms
55,292 KB
testcase_09 AC 38 ms
54,252 KB
testcase_10 AC 36 ms
55,416 KB
testcase_11 AC 36 ms
54,520 KB
testcase_12 AC 37 ms
55,204 KB
testcase_13 AC 37 ms
53,988 KB
testcase_14 AC 38 ms
54,116 KB
testcase_15 AC 37 ms
55,040 KB
testcase_16 AC 36 ms
55,436 KB
testcase_17 AC 35 ms
55,036 KB
testcase_18 AC 45 ms
53,868 KB
testcase_19 AC 44 ms
54,148 KB
testcase_20 AC 37 ms
55,332 KB
testcase_21 AC 37 ms
54,848 KB
testcase_22 AC 37 ms
54,148 KB
testcase_23 AC 36 ms
54,376 KB
testcase_24 AC 779 ms
202,440 KB
testcase_25 AC 810 ms
202,788 KB
testcase_26 AC 782 ms
202,376 KB
testcase_27 AC 748 ms
199,272 KB
testcase_28 AC 789 ms
202,384 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 = set()
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 (nx, ny) not in visited and grid[ny][nx] == '1':
                visited.add((nx, ny))
                q.append((nx, ny))
                
    count += 1
print(count)
0