結果

問題 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
コンパイル時間 158 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 87,680 KB
最終ジャッジ日時 2024-11-25 13:51:32
合計ジャッジ時間 35,556 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,496 KB
testcase_01 AC 24 ms
10,496 KB
testcase_02 AC 25 ms
10,496 KB
testcase_03 AC 25 ms
10,496 KB
testcase_04 AC 24 ms
10,624 KB
testcase_05 AC 25 ms
10,496 KB
testcase_06 AC 25 ms
10,624 KB
testcase_07 AC 25 ms
10,496 KB
testcase_08 AC 25 ms
10,752 KB
testcase_09 AC 26 ms
10,624 KB
testcase_10 AC 26 ms
10,496 KB
testcase_11 AC 25 ms
10,496 KB
testcase_12 AC 25 ms
10,624 KB
testcase_13 AC 25 ms
10,496 KB
testcase_14 AC 25 ms
10,496 KB
testcase_15 AC 26 ms
10,496 KB
testcase_16 AC 25 ms
10,624 KB
testcase_17 AC 26 ms
10,624 KB
testcase_18 AC 27 ms
10,752 KB
testcase_19 AC 27 ms
10,496 KB
testcase_20 AC 25 ms
10,752 KB
testcase_21 AC 26 ms
10,496 KB
testcase_22 AC 27 ms
10,496 KB
testcase_23 AC 26 ms
10,752 KB
testcase_24 AC 674 ms
19,584 KB
testcase_25 AC 667 ms
19,328 KB
testcase_26 AC 698 ms
19,328 KB
testcase_27 AC 683 ms
19,456 KB
testcase_28 AC 673 ms
19,328 KB
testcase_29 RE -
testcase_30 AC 5,913 ms
87,168 KB
testcase_31 RE -
testcase_32 AC 5,876 ms
87,168 KB
testcase_33 AC 5,975 ms
87,040 KB
testcase_34 AC 5,950 ms
87,424 KB
権限があれば一括ダウンロードができます

ソースコード

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