結果

問題 No.697 池の数はいくつか
ユーザー ああいいああいい
提出日時 2022-03-07 19:56:42
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 576 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 475,152 KB
最終ジャッジ日時 2024-07-22 15:05:30
合計ジャッジ時間 12,587 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,968 KB
testcase_01 AC 35 ms
51,968 KB
testcase_02 AC 34 ms
51,840 KB
testcase_03 AC 33 ms
51,968 KB
testcase_04 AC 33 ms
51,712 KB
testcase_05 AC 33 ms
51,968 KB
testcase_06 AC 35 ms
52,352 KB
testcase_07 AC 34 ms
52,096 KB
testcase_08 AC 34 ms
52,096 KB
testcase_09 AC 35 ms
51,968 KB
testcase_10 AC 34 ms
52,096 KB
testcase_11 AC 34 ms
51,968 KB
testcase_12 AC 34 ms
51,712 KB
testcase_13 AC 40 ms
52,352 KB
testcase_14 AC 36 ms
51,840 KB
testcase_15 AC 37 ms
52,096 KB
testcase_16 AC 38 ms
51,968 KB
testcase_17 AC 35 ms
52,096 KB
testcase_18 AC 36 ms
51,712 KB
testcase_19 AC 34 ms
51,840 KB
testcase_20 AC 36 ms
51,840 KB
testcase_21 AC 34 ms
52,096 KB
testcase_22 AC 34 ms
51,968 KB
testcase_23 AC 34 ms
52,096 KB
testcase_24 AC 188 ms
85,760 KB
testcase_25 AC 179 ms
86,016 KB
testcase_26 AC 183 ms
85,632 KB
testcase_27 AC 186 ms
85,632 KB
testcase_28 AC 177 ms
85,760 KB
testcase_29 MLE -
testcase_30 AC 1,071 ms
166,016 KB
testcase_31 MLE -
testcase_32 AC 970 ms
166,528 KB
testcase_33 AC 1,051 ms
165,976 KB
testcase_34 AC 955 ms
166,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W = map(int,input().split())
A = [list(map(int,input().split())) for _ in range(H)]

count = 0
stack = []
for h in range(H):
    for w in range(W):
        if A[h][w] == 1:
            count += 1
            stack.append((h,w))
            A[h][w] = 0
            while stack:
                x,y = stack.pop()
                for i,j in [(0,1),(0,-1),(1,0),(-1,0)]:
                    if 0 <= x + i < H and 0 <= y + j < W:
                        if A[x+i][y+j]:
                            A[x+i][y+j] = 0
                            stack.append((x+i,y+j))
print(count)
0