結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,880 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 27 ms
10,880 KB
testcase_04 AC 26 ms
10,880 KB
testcase_05 AC 27 ms
10,880 KB
testcase_06 AC 29 ms
10,880 KB
testcase_07 AC 28 ms
10,880 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 28 ms
10,880 KB
testcase_10 AC 27 ms
10,752 KB
testcase_11 AC 29 ms
10,752 KB
testcase_12 AC 28 ms
10,752 KB
testcase_13 AC 28 ms
10,752 KB
testcase_14 AC 29 ms
10,752 KB
testcase_15 AC 28 ms
10,752 KB
testcase_16 AC 28 ms
10,752 KB
testcase_17 AC 28 ms
10,752 KB
testcase_18 AC 26 ms
10,752 KB
testcase_19 AC 26 ms
10,752 KB
testcase_20 AC 26 ms
10,752 KB
testcase_21 AC 27 ms
10,752 KB
testcase_22 AC 25 ms
10,752 KB
testcase_23 AC 27 ms
10,752 KB
testcase_24 AC 614 ms
19,584 KB
testcase_25 AC 617 ms
19,584 KB
testcase_26 AC 627 ms
19,456 KB
testcase_27 AC 652 ms
19,456 KB
testcase_28 AC 617 ms
19,456 KB
testcase_29 RE -
testcase_30 AC 5,515 ms
87,296 KB
testcase_31 RE -
testcase_32 AC 5,393 ms
87,168 KB
testcase_33 AC 5,360 ms
87,296 KB
testcase_34 AC 5,505 ms
87,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

lst = []
cnt = 0

def tansaku(x,y):
    lst[x][y]=0
    if lst[x+1][y]==1:
        tansaku(x+1,y)
    if lst[x-1][y]==1:
        tansaku(x-1,y)
    if lst[x][y+1]==1:
        tansaku(x,y+1)
    if lst[x][y-1]==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