結果

問題 No.697 池の数はいくつか
ユーザー neko_the_shadowneko_the_shadow
提出日時 2018-06-09 22:30:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 673 bytes
コンパイル時間 648 ms
コンパイル使用メモリ 10,888 KB
実行使用メモリ 17,320 KB
最終ジャッジ日時 2023-08-16 22:15:49
合計ジャッジ時間 16,387 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
8,200 KB
testcase_01 WA -
testcase_02 AC 16 ms
8,076 KB
testcase_03 AC 16 ms
8,236 KB
testcase_04 WA -
testcase_05 AC 16 ms
8,232 KB
testcase_06 AC 15 ms
8,092 KB
testcase_07 WA -
testcase_08 AC 16 ms
8,192 KB
testcase_09 AC 16 ms
8,236 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 16 ms
8,208 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 16 ms
8,056 KB
testcase_16 AC 15 ms
8,236 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 16 ms
8,056 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 TLE -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools

if __name__ == '__main__':
    h, w = map(int, input().split())
    matrix = [list(map(int, input().split())) for _ in range(h)]
    
    diffs = ((1, 0), (0, 1))
    counter = 0
    for x, y in itertools.product(range(h), range(w)):
        if matrix[x][y] == 0: continue
        
        counter += 1
        stack = [(x, y)]
        while stack:
            i, j = stack.pop()
            if not(0 <= i < h and 0 <= j < w and matrix[i][j] == 1): continue

            matrix[i][j] = 0
            for di, dj in diffs:
                ni, nj = i + di, j + dj
                if 0 <= ni < h and 0 <= nj < w: stack.append((ni, nj))
    
    print(counter)
0