結果

問題 No.697 池の数はいくつか
ユーザー neko_the_shadowneko_the_shadow
提出日時 2018-06-09 22:18:16
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 603 bytes
コンパイル時間 684 ms
コンパイル使用メモリ 82,792 KB
実行使用メモリ 849,440 KB
最終ジャッジ日時 2024-11-25 13:04:04
合計ジャッジ時間 19,791 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,340 KB
testcase_01 AC 36 ms
53,448 KB
testcase_02 AC 36 ms
52,572 KB
testcase_03 AC 36 ms
52,152 KB
testcase_04 AC 36 ms
52,528 KB
testcase_05 AC 35 ms
52,984 KB
testcase_06 AC 37 ms
53,792 KB
testcase_07 AC 35 ms
52,464 KB
testcase_08 AC 37 ms
53,132 KB
testcase_09 AC 36 ms
52,500 KB
testcase_10 AC 37 ms
52,676 KB
testcase_11 AC 37 ms
53,732 KB
testcase_12 AC 36 ms
52,480 KB
testcase_13 AC 36 ms
52,536 KB
testcase_14 AC 34 ms
52,952 KB
testcase_15 AC 35 ms
53,956 KB
testcase_16 AC 34 ms
53,508 KB
testcase_17 AC 36 ms
53,940 KB
testcase_18 AC 36 ms
52,968 KB
testcase_19 AC 36 ms
53,072 KB
testcase_20 AC 37 ms
52,628 KB
testcase_21 AC 35 ms
53,652 KB
testcase_22 AC 36 ms
53,012 KB
testcase_23 AC 36 ms
52,740 KB
testcase_24 AC 281 ms
85,948 KB
testcase_25 AC 287 ms
86,196 KB
testcase_26 AC 279 ms
85,588 KB
testcase_27 AC 286 ms
85,896 KB
testcase_28 AC 290 ms
85,692 KB
testcase_29 MLE -
testcase_30 AC 2,078 ms
166,096 KB
testcase_31 MLE -
testcase_32 AC 1,989 ms
165,976 KB
testcase_33 AC 1,898 ms
165,960 KB
testcase_34 AC 1,877 ms
166,116 KB
権限があれば一括ダウンロードができます

ソースコード

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), (-1, 0), (0, 1), (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 0 <= i < h and 0 <= j < w and matrix[i][j] == 1:
                matrix[i][j] = 0
                stack.extend((i + di, j + dj) for di, dj in diffs)
    
    print(counter)
0