結果

問題 No.697 池の数はいくつか
ユーザー KazunKazun
提出日時 2020-07-18 01:30:03
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 601 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 849,388 KB
最終ジャッジ日時 2024-11-25 16:21:52
合計ジャッジ時間 70,307 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 MLE -
testcase_02 MLE -
testcase_03 MLE -
testcase_04 MLE -
testcase_05 MLE -
testcase_06 AC 42 ms
53,812 KB
testcase_07 AC 43 ms
54,216 KB
testcase_08 AC 43 ms
53,936 KB
testcase_09 AC 42 ms
54,496 KB
testcase_10 AC 43 ms
53,800 KB
testcase_11 AC 44 ms
55,064 KB
testcase_12 AC 42 ms
54,508 KB
testcase_13 AC 43 ms
54,844 KB
testcase_14 AC 43 ms
54,416 KB
testcase_15 AC 43 ms
55,384 KB
testcase_16 AC 43 ms
54,204 KB
testcase_17 AC 42 ms
55,380 KB
testcase_18 AC 43 ms
53,944 KB
testcase_19 AC 43 ms
55,444 KB
testcase_20 AC 43 ms
53,980 KB
testcase_21 AC 42 ms
55,052 KB
testcase_22 AC 43 ms
53,912 KB
testcase_23 AC 42 ms
54,244 KB
testcase_24 AC 3,507 ms
292,316 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 MLE -
testcase_29 MLE -
testcase_30 TLE -
testcase_31 MLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
H,W=map(int,input().split())

A=[[0]*(W) for _ in range(H)]
for y in range(H):
    B=list(map(int,input().split()))
    A[y]=B

V=[(-1,0),(1,0),(0,-1),(0,1)]
X=0
for y in range(H):
    for x in range(W):
        if A[y][x]==1:
            X+=1
            Q=deque([(x,y)])

            while Q:
                p,q=Q.popleft()
                A[q][p]=0

                for a,b in V:
                    s=p+a
                    t=q+b
                    if 0<=s<W and 0<=t<H:
                        if A[t][s]==1:
                            Q.append((s,t))

print(X)
0