結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,620 KB
testcase_01 AC 36 ms
52,680 KB
testcase_02 AC 35 ms
52,820 KB
testcase_03 AC 36 ms
52,528 KB
testcase_04 AC 36 ms
52,004 KB
testcase_05 AC 36 ms
51,940 KB
testcase_06 AC 36 ms
52,644 KB
testcase_07 AC 34 ms
52,428 KB
testcase_08 AC 35 ms
52,216 KB
testcase_09 AC 35 ms
52,820 KB
testcase_10 AC 36 ms
52,564 KB
testcase_11 AC 35 ms
53,704 KB
testcase_12 AC 35 ms
53,020 KB
testcase_13 AC 37 ms
52,828 KB
testcase_14 AC 36 ms
52,876 KB
testcase_15 AC 36 ms
52,860 KB
testcase_16 AC 34 ms
53,484 KB
testcase_17 AC 36 ms
53,024 KB
testcase_18 AC 39 ms
52,760 KB
testcase_19 AC 36 ms
53,952 KB
testcase_20 AC 36 ms
52,156 KB
testcase_21 AC 34 ms
52,388 KB
testcase_22 AC 37 ms
52,516 KB
testcase_23 AC 36 ms
52,680 KB
testcase_24 AC 371 ms
87,752 KB
testcase_25 AC 340 ms
87,444 KB
testcase_26 AC 319 ms
87,936 KB
testcase_27 AC 318 ms
87,264 KB
testcase_28 AC 325 ms
87,588 KB
testcase_29 RE -
testcase_30 AC 1,508 ms
171,608 KB
testcase_31 RE -
testcase_32 AC 1,528 ms
171,772 KB
testcase_33 AC 1,496 ms
171,804 KB
testcase_34 AC 1,685 ms
172,560 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