結果

問題 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
コンパイル時間 246 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 87,552 KB
最終ジャッジ日時 2024-11-25 13:52:31
合計ジャッジ時間 34,166 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 27 ms
10,496 KB
testcase_03 AC 26 ms
10,624 KB
testcase_04 AC 26 ms
10,624 KB
testcase_05 AC 27 ms
10,624 KB
testcase_06 AC 27 ms
10,624 KB
testcase_07 AC 26 ms
10,496 KB
testcase_08 AC 26 ms
10,624 KB
testcase_09 AC 26 ms
10,496 KB
testcase_10 AC 27 ms
10,496 KB
testcase_11 AC 27 ms
10,624 KB
testcase_12 AC 27 ms
10,496 KB
testcase_13 AC 28 ms
10,496 KB
testcase_14 AC 27 ms
10,752 KB
testcase_15 AC 26 ms
10,752 KB
testcase_16 AC 27 ms
10,752 KB
testcase_17 AC 26 ms
10,496 KB
testcase_18 AC 28 ms
10,624 KB
testcase_19 AC 26 ms
10,496 KB
testcase_20 AC 26 ms
10,624 KB
testcase_21 AC 26 ms
10,496 KB
testcase_22 AC 26 ms
10,624 KB
testcase_23 AC 26 ms
10,496 KB
testcase_24 AC 635 ms
19,456 KB
testcase_25 AC 637 ms
19,328 KB
testcase_26 AC 629 ms
19,328 KB
testcase_27 AC 673 ms
19,456 KB
testcase_28 AC 615 ms
19,328 KB
testcase_29 RE -
testcase_30 AC 5,864 ms
87,168 KB
testcase_31 RE -
testcase_32 AC 5,491 ms
87,296 KB
testcase_33 AC 5,628 ms
87,040 KB
testcase_34 AC 5,685 ms
87,296 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