結果

問題 No.697 池の数はいくつか
ユーザー convexineqconvexineq
提出日時 2021-05-11 01:53:47
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 479 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 409,912 KB
最終ジャッジ日時 2024-11-25 17:01:55
合計ジャッジ時間 13,241 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,064 KB
testcase_01 AC 39 ms
52,680 KB
testcase_02 AC 39 ms
53,008 KB
testcase_03 AC 40 ms
53,016 KB
testcase_04 AC 39 ms
52,808 KB
testcase_05 AC 40 ms
52,836 KB
testcase_06 AC 40 ms
52,868 KB
testcase_07 AC 39 ms
52,820 KB
testcase_08 AC 39 ms
52,372 KB
testcase_09 AC 39 ms
53,892 KB
testcase_10 AC 39 ms
52,748 KB
testcase_11 AC 39 ms
53,876 KB
testcase_12 AC 38 ms
53,440 KB
testcase_13 AC 39 ms
53,336 KB
testcase_14 AC 40 ms
53,240 KB
testcase_15 AC 40 ms
52,264 KB
testcase_16 AC 39 ms
52,832 KB
testcase_17 AC 39 ms
53,288 KB
testcase_18 AC 39 ms
52,392 KB
testcase_19 AC 39 ms
52,476 KB
testcase_20 AC 39 ms
53,624 KB
testcase_21 AC 39 ms
52,864 KB
testcase_22 AC 40 ms
53,180 KB
testcase_23 AC 40 ms
52,760 KB
testcase_24 AC 221 ms
85,452 KB
testcase_25 AC 208 ms
85,792 KB
testcase_26 AC 212 ms
85,720 KB
testcase_27 AC 206 ms
85,468 KB
testcase_28 AC 221 ms
85,584 KB
testcase_29 MLE -
testcase_30 AC 1,219 ms
165,708 KB
testcase_31 MLE -
testcase_32 AC 1,185 ms
165,968 KB
testcase_33 AC 1,195 ms
165,780 KB
testcase_34 AC 1,204 ms
165,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w = map(int,input().split())
a = [list(map(int,input().split())) for _ in range(h)]

def dfs(i,j):
    a[i][j] = 0
    q = [(i,j)]
    while q:
        i,j = q.pop()
        for ni,nj in [(i+1,j),(i-1,j),(i,j+1),(i,j-1)]:
            if 0 <= ni < h and 0 <= nj < w and a[ni][nj] == 1:
                a[ni][nj] = 0
                q.append((ni,nj))

ans = 0
for i in range(h):
    for j in range(w):
        if a[i][j] == 1:
            ans += 1
            dfs(i,j)
print(ans)
0