結果

問題 No.697 池の数はいくつか
ユーザー DrDrpilotDrDrpilot
提出日時 2022-01-21 15:58:43
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 466 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 172,152 KB
最終ジャッジ日時 2024-05-04 07:33:27
合計ジャッジ時間 15,554 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,368 KB
testcase_01 AC 37 ms
52,328 KB
testcase_02 AC 38 ms
52,064 KB
testcase_03 AC 37 ms
51,968 KB
testcase_04 AC 38 ms
53,092 KB
testcase_05 AC 38 ms
51,940 KB
testcase_06 AC 38 ms
53,492 KB
testcase_07 AC 37 ms
52,764 KB
testcase_08 AC 37 ms
53,068 KB
testcase_09 AC 38 ms
52,400 KB
testcase_10 AC 37 ms
53,424 KB
testcase_11 AC 36 ms
52,524 KB
testcase_12 AC 37 ms
53,688 KB
testcase_13 AC 37 ms
53,224 KB
testcase_14 AC 37 ms
51,876 KB
testcase_15 AC 37 ms
52,616 KB
testcase_16 AC 37 ms
52,336 KB
testcase_17 AC 37 ms
52,240 KB
testcase_18 AC 37 ms
52,704 KB
testcase_19 AC 38 ms
52,276 KB
testcase_20 AC 38 ms
52,752 KB
testcase_21 AC 38 ms
53,604 KB
testcase_22 AC 38 ms
52,216 KB
testcase_23 AC 39 ms
52,776 KB
testcase_24 AC 395 ms
87,692 KB
testcase_25 AC 380 ms
87,232 KB
testcase_26 AC 368 ms
88,060 KB
testcase_27 AC 366 ms
86,976 KB
testcase_28 AC 376 ms
87,252 KB
testcase_29 RE -
testcase_30 AC 1,955 ms
170,940 KB
testcase_31 RE -
testcase_32 AC 2,042 ms
172,152 KB
testcase_33 AC 1,956 ms
172,060 KB
testcase_34 AC 2,131 ms
171,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**3)
h,w=map(int,input().split())
g=[list(map(int,input().split())) for _ in range(h)]
def dfs(i,j):
    g[i][j]=0
    dy=[0,1,0,-1]
    dx=[1,0,-1,0]
    for k in range(4):
        y=i+dy[k]
        x=j+dx[k]
        if not(0<=y<h and 0<=x<w):
            continue
        if g[y][x]==1:
            dfs(y,x)
ans=0
for i in range(h):
    for j in range(w):
        if g[i][j]==1:
            ans+=1
            dfs(i,j)
print(ans)
0