結果

問題 No.697 池の数はいくつか
ユーザー dice4084dice4084
提出日時 2022-12-27 22:42:18
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 800 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 879,616 KB
最終ジャッジ日時 2024-11-22 09:49:04
合計ジャッジ時間 76,326 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 MLE -
testcase_02 MLE -
testcase_03 MLE -
testcase_04 MLE -
testcase_05 AC 46 ms
54,016 KB
testcase_06 AC 47 ms
54,016 KB
testcase_07 AC 49 ms
53,888 KB
testcase_08 AC 45 ms
53,504 KB
testcase_09 AC 46 ms
53,504 KB
testcase_10 AC 45 ms
53,888 KB
testcase_11 AC 46 ms
53,504 KB
testcase_12 AC 45 ms
53,888 KB
testcase_13 AC 45 ms
53,888 KB
testcase_14 AC 45 ms
54,016 KB
testcase_15 AC 46 ms
54,016 KB
testcase_16 AC 46 ms
53,376 KB
testcase_17 AC 45 ms
53,632 KB
testcase_18 AC 46 ms
54,016 KB
testcase_19 AC 45 ms
53,376 KB
testcase_20 AC 46 ms
53,888 KB
testcase_21 AC 47 ms
53,632 KB
testcase_22 AC 47 ms
53,376 KB
testcase_23 AC 46 ms
53,888 KB
testcase_24 AC 4,293 ms
289,152 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 MLE -
testcase_30 TLE -
testcase_31 MLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import deque
from itertools import product

h, w = map(int, input().split())
a = [[0]*(w+2)] + [[0] + list(map(int, input().split())) + [0] for _ in range(h)] + [[0]*(w+2)]
arrived = [[False]*(w+2) for _ in range(h+2)]

dyx = ((1, 0), (-1, 0), (0, 1), (0, -1))
ans = 0
for i, j in product(range(1, h+1), range(1, w+1)):
    if a[i][j] == 0:
        continue
    if arrived[i][j]:
        continue

    ans += 1
    q = deque([(i, j)])
    while q:
        y, x = q.popleft()
        arrived[y][x] = True
        for dy, dx in dyx:
            new_y, new_x = (y+dy, x+dx)
            if a[new_y][new_x] == 0:
                continue
            if arrived[new_y][new_x]:
                continue
            q.append((new_y, new_x))

print(ans)
0