結果

問題 No.697 池の数はいくつか
ユーザー Mr.FukuMr.Fuku
提出日時 2018-06-23 21:26:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 506 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 87,808 KB
最終ジャッジ日時 2024-05-04 06:02:02
合計ジャッジ時間 36,374 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,752 KB
testcase_01 AC 24 ms
10,752 KB
testcase_02 AC 24 ms
10,752 KB
testcase_03 AC 25 ms
10,752 KB
testcase_04 AC 26 ms
10,880 KB
testcase_05 AC 26 ms
10,752 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 26 ms
10,752 KB
testcase_09 AC 25 ms
10,880 KB
testcase_10 AC 25 ms
10,752 KB
testcase_11 AC 24 ms
10,752 KB
testcase_12 AC 25 ms
10,880 KB
testcase_13 AC 24 ms
10,752 KB
testcase_14 AC 26 ms
10,752 KB
testcase_15 AC 25 ms
10,752 KB
testcase_16 AC 24 ms
10,752 KB
testcase_17 AC 25 ms
10,752 KB
testcase_18 AC 25 ms
10,752 KB
testcase_19 AC 24 ms
10,752 KB
testcase_20 AC 26 ms
10,752 KB
testcase_21 AC 27 ms
10,752 KB
testcase_22 AC 26 ms
10,752 KB
testcase_23 AC 26 ms
10,752 KB
testcase_24 AC 684 ms
19,584 KB
testcase_25 AC 686 ms
19,584 KB
testcase_26 AC 707 ms
19,584 KB
testcase_27 AC 697 ms
19,456 KB
testcase_28 AC 662 ms
19,584 KB
testcase_29 RE -
testcase_30 TLE -
testcase_31 RE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w = input().split()
h,w = int(h),int(w)

lst = []
cnt = 0

def tansaku(x,y):
    if lst[x][y]==0:
        return
    lst[x][y]=0
    tansaku(x+1,y)
    tansaku(x-1,y)
    tansaku(x,y+1)
    tansaku(x,y-1)

for a in range(h):
    l = [0]
    for b in input().split():
        l.append(int(b))
    l.append(0)
    lst.append(l)
lst.insert(0,[0]*(w+2))
lst.append([0]*(w+2))

for a in range(1,h+1):
    for b in range(1,w+1):
        if lst[a][b]==1:
            cnt+=1
            tansaku(a,b)

print(cnt)
0