結果

問題 No.697 池の数はいくつか
ユーザー vwxyzvwxyz
提出日時 2022-01-05 08:06:22
言語 PyPy2
(7.3.15)
結果
MLE  
実行時間 -
コード長 678 bytes
コンパイル時間 518 ms
コンパイル使用メモリ 77,216 KB
実行使用メモリ 547,780 KB
最終ジャッジ日時 2024-05-04 07:30:19
合計ジャッジ時間 20,123 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
77,868 KB
testcase_01 AC 78 ms
77,728 KB
testcase_02 AC 81 ms
77,976 KB
testcase_03 AC 80 ms
77,740 KB
testcase_04 AC 81 ms
77,372 KB
testcase_05 AC 78 ms
77,736 KB
testcase_06 AC 73 ms
78,012 KB
testcase_07 AC 76 ms
77,708 KB
testcase_08 AC 75 ms
77,692 KB
testcase_09 AC 75 ms
77,704 KB
testcase_10 AC 74 ms
77,612 KB
testcase_11 AC 75 ms
78,012 KB
testcase_12 AC 77 ms
77,564 KB
testcase_13 AC 76 ms
77,712 KB
testcase_14 AC 79 ms
77,588 KB
testcase_15 AC 82 ms
77,476 KB
testcase_16 AC 73 ms
77,364 KB
testcase_17 AC 76 ms
77,472 KB
testcase_18 AC 76 ms
77,984 KB
testcase_19 AC 76 ms
77,480 KB
testcase_20 AC 77 ms
77,608 KB
testcase_21 AC 76 ms
77,364 KB
testcase_22 AC 76 ms
77,980 KB
testcase_23 AC 77 ms
77,948 KB
testcase_24 AC 277 ms
95,648 KB
testcase_25 AC 260 ms
95,764 KB
testcase_26 AC 255 ms
95,912 KB
testcase_27 AC 261 ms
95,876 KB
testcase_28 AC 266 ms
96,012 KB
testcase_29 MLE -
testcase_30 AC 1,490 ms
228,132 KB
testcase_31 MLE -
testcase_32 AC 1,728 ms
227,988 KB
testcase_33 AC 1,493 ms
227,572 KB
testcase_34 AC 1,496 ms
227,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
import sys
readline=sys.stdin.readline


H,W=map(int,readline().split())
A=[list(map(int,readline().split())) for h in range(H)]
ans=0
seen=[[False]*W for h in range(H)]
for h in range(H):
    for w in range(W):
        if not seen[h][w] and A[h][w]:
            queue=[(h,w)]
            seen[h][w]=True
            ans+=1
            while queue:
                hh,ww=queue.pop()
                for dh,dw in ((0,1),(1,0),(0,-1),(-1,0)):
                    if 0<=hh+dh<H and 0<=ww+dw<W and A[hh+dh][ww+dw] and not seen[hh+dh][ww+dw]:
                        queue.append((hh+dh,ww+dw))
                        seen[hh+dh][ww+dw]=True
print(ans)
0