結果

問題 No.697 池の数はいくつか
ユーザー kawacchukawacchu
提出日時 2019-09-16 19:52:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 715 bytes
コンパイル時間 109 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 98,304 KB
最終ジャッジ日時 2024-11-25 15:24:00
合計ジャッジ時間 50,404 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
98,304 KB
testcase_01 WA -
testcase_02 AC 28 ms
98,048 KB
testcase_03 AC 25 ms
98,048 KB
testcase_04 WA -
testcase_05 AC 25 ms
97,536 KB
testcase_06 AC 26 ms
10,368 KB
testcase_07 WA -
testcase_08 AC 25 ms
10,496 KB
testcase_09 AC 25 ms
10,752 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 25 ms
10,496 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 25 ms
10,752 KB
testcase_16 AC 24 ms
10,752 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 26 ms
10,624 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import deque
H,W = map(int,input().split())
A = [list(map(int,input().split())) for y in range(H)]
ans = 0
#dxy = [(-1,0), (0,-1), (0,1), (1,0)]
dxy = [(0,1), (1,0)]

for i in range(H) :
    for j in range(W) :
        if A[i][j] != 1 :
            continue
        ans += 1
        A[i][j] = 0
        q = deque([(i, j)])
        while q :
            y, x = q.popleft()
            for dy,dx in dxy :
                ny,nx = y+dy, x+dx
                if ny<0 or ny>=H or nx<0 or nx>=W :
                    continue
                if A[ny][nx] != 1 :
                    continue
                q.append((ny, nx))
                A[ny][nx] = 0
print(ans)
0