結果

問題 No.697 池の数はいくつか
ユーザー ayaoniayaoni
提出日時 2020-12-10 07:00:29
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,076 bytes
コンパイル時間 1,191 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 373,324 KB
最終ジャッジ日時 2024-11-25 16:45:20
合計ジャッジ時間 13,492 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,452 KB
testcase_01 AC 38 ms
54,532 KB
testcase_02 AC 36 ms
54,416 KB
testcase_03 AC 40 ms
55,676 KB
testcase_04 AC 38 ms
55,072 KB
testcase_05 AC 39 ms
54,536 KB
testcase_06 AC 40 ms
54,060 KB
testcase_07 AC 36 ms
54,152 KB
testcase_08 AC 36 ms
54,756 KB
testcase_09 AC 38 ms
55,860 KB
testcase_10 AC 41 ms
56,028 KB
testcase_11 AC 41 ms
55,024 KB
testcase_12 AC 42 ms
55,336 KB
testcase_13 AC 42 ms
55,504 KB
testcase_14 AC 41 ms
53,932 KB
testcase_15 AC 41 ms
54,252 KB
testcase_16 AC 41 ms
56,024 KB
testcase_17 AC 39 ms
54,132 KB
testcase_18 AC 38 ms
55,372 KB
testcase_19 AC 37 ms
53,928 KB
testcase_20 AC 37 ms
54,664 KB
testcase_21 AC 38 ms
55,076 KB
testcase_22 AC 38 ms
53,916 KB
testcase_23 AC 37 ms
54,528 KB
testcase_24 AC 247 ms
94,528 KB
testcase_25 AC 232 ms
94,076 KB
testcase_26 AC 221 ms
94,120 KB
testcase_27 AC 219 ms
94,236 KB
testcase_28 AC 257 ms
94,456 KB
testcase_29 MLE -
testcase_30 AC 1,469 ms
237,700 KB
testcase_31 MLE -
testcase_32 AC 1,417 ms
237,812 KB
testcase_33 AC 1,453 ms
237,520 KB
testcase_34 AC 1,354 ms
237,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque
sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


H,W = MI()
A = [LI() for _ in range(H)]

flag = [[0]*W for _ in range(H)]
directions = [(-1,0),(1,0),(0,-1),(0,1)]
ans = 0
for i in range(H):
    for j in range(W):
        if flag[i][j] == 1 or A[i][j] == 0:
            continue
        ans += 1
        deq = deque([(i,j)])
        flag[i][j] = 1
        while deq:
            x,y = deq.pop()
            for dx,dy in directions:
                nx,ny = x+dx,y+dy
                if 0 <= nx < H and 0 <= ny < W and flag[nx][ny] == 0 and A[nx][ny] == 1:
                    flag[nx][ny] = 1
                    deq.append((nx,ny))

print(ans)
0