結果

問題 No.697 池の数はいくつか
ユーザー lllllll88938494lllllll88938494
提出日時 2022-09-22 16:06:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 666 bytes
コンパイル時間 365 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 979,864 KB
最終ジャッジ日時 2024-12-22 04:57:49
合計ジャッジ時間 26,846 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 43 ms
53,248 KB
testcase_02 RE -
testcase_03 RE -
testcase_04 WA -
testcase_05 RE -
testcase_06 AC 43 ms
53,632 KB
testcase_07 AC 44 ms
53,376 KB
testcase_08 AC 45 ms
53,376 KB
testcase_09 RE -
testcase_10 WA -
testcase_11 AC 44 ms
53,376 KB
testcase_12 AC 44 ms
52,992 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 44 ms
53,632 KB
testcase_16 RE -
testcase_17 AC 43 ms
53,376 KB
testcase_18 WA -
testcase_19 RE -
testcase_20 WA -
testcase_21 AC 44 ms
52,992 KB
testcase_22 AC 44 ms
53,504 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 MLE -
testcase_30 TLE -
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(map(int,input().split())) for i in range(h)]
f=[[0]*w for i in range(h)]
cnt = 1
l=[1,0,-1,0]
r=[0,1,0,-1]


for i in range(h):
    for j in range(w):
        if grid[i][j] == 1 and f[i][j] ==0:
            d=deque()
            d.append((i,j))
            while d:
                x,y=d.popleft()
                f[x][y] = cnt
                for i in range(4):
                    if 0 <= x + l[i] < h and 0 <= y + r[i] < w:
                        if grid[x+l[i]][y+r[i]] == 1 and f[x+l[i]][y+r[i]] == 0:
                            d.append((x+l[i],y+r[i]))
            cnt+=1
print(cnt-1) 
0