結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,944 KB
testcase_01 AC 39 ms
52,472 KB
testcase_02 AC 39 ms
52,064 KB
testcase_03 AC 39 ms
52,880 KB
testcase_04 AC 39 ms
53,540 KB
testcase_05 AC 39 ms
53,428 KB
testcase_06 AC 42 ms
53,472 KB
testcase_07 AC 39 ms
52,072 KB
testcase_08 AC 38 ms
52,300 KB
testcase_09 AC 40 ms
52,488 KB
testcase_10 AC 40 ms
52,312 KB
testcase_11 AC 40 ms
52,480 KB
testcase_12 AC 39 ms
52,504 KB
testcase_13 AC 39 ms
53,224 KB
testcase_14 AC 40 ms
52,948 KB
testcase_15 AC 39 ms
52,400 KB
testcase_16 AC 40 ms
53,264 KB
testcase_17 AC 40 ms
53,352 KB
testcase_18 AC 39 ms
52,552 KB
testcase_19 AC 38 ms
52,004 KB
testcase_20 AC 41 ms
53,272 KB
testcase_21 AC 40 ms
52,356 KB
testcase_22 AC 40 ms
52,192 KB
testcase_23 AC 39 ms
53,404 KB
testcase_24 AC 391 ms
87,828 KB
testcase_25 AC 377 ms
87,600 KB
testcase_26 AC 371 ms
88,036 KB
testcase_27 AC 369 ms
86,916 KB
testcase_28 AC 373 ms
86,924 KB
testcase_29 RE -
testcase_30 AC 1,943 ms
171,196 KB
testcase_31 RE -
testcase_32 AC 1,973 ms
172,144 KB
testcase_33 AC 1,928 ms
171,632 KB
testcase_34 AC 2,108 ms
172,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**4)
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