結果

問題 No.697 池の数はいくつか
ユーザー DrDrpilotDrDrpilot
提出日時 2022-01-21 15:57:39
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 466 bytes
コンパイル時間 368 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 194,144 KB
最終ジャッジ日時 2024-11-25 17:16:41
合計ジャッジ時間 12,524 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,404 KB
testcase_01 AC 34 ms
52,068 KB
testcase_02 AC 34 ms
52,744 KB
testcase_03 AC 34 ms
53,256 KB
testcase_04 AC 35 ms
51,752 KB
testcase_05 AC 35 ms
52,752 KB
testcase_06 AC 36 ms
52,064 KB
testcase_07 AC 36 ms
52,560 KB
testcase_08 AC 35 ms
53,988 KB
testcase_09 AC 35 ms
52,344 KB
testcase_10 AC 34 ms
52,532 KB
testcase_11 AC 34 ms
53,084 KB
testcase_12 AC 35 ms
53,272 KB
testcase_13 AC 35 ms
52,604 KB
testcase_14 AC 35 ms
52,420 KB
testcase_15 AC 35 ms
53,676 KB
testcase_16 AC 35 ms
53,880 KB
testcase_17 AC 36 ms
52,328 KB
testcase_18 AC 38 ms
53,400 KB
testcase_19 AC 38 ms
52,752 KB
testcase_20 AC 38 ms
53,216 KB
testcase_21 AC 36 ms
52,208 KB
testcase_22 AC 35 ms
52,828 KB
testcase_23 AC 36 ms
52,532 KB
testcase_24 AC 339 ms
88,000 KB
testcase_25 AC 323 ms
87,236 KB
testcase_26 AC 309 ms
88,072 KB
testcase_27 AC 323 ms
87,156 KB
testcase_28 AC 318 ms
87,500 KB
testcase_29 RE -
testcase_30 AC 1,526 ms
171,228 KB
testcase_31 RE -
testcase_32 AC 1,585 ms
172,196 KB
testcase_33 AC 1,544 ms
172,028 KB
testcase_34 AC 1,759 ms
171,804 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