結果

問題 No.697 池の数はいくつか
ユーザー Mr.FukuMr.Fuku
提出日時 2018-06-23 21:07:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 459 bytes
コンパイル時間 444 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 81,920 KB
最終ジャッジ日時 2024-11-25 13:50:55
合計ジャッジ時間 20,340 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,496 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 26 ms
10,496 KB
testcase_03 AC 26 ms
10,496 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 27 ms
10,624 KB
testcase_06 AC 26 ms
10,624 KB
testcase_07 AC 27 ms
10,496 KB
testcase_08 AC 27 ms
10,496 KB
testcase_09 AC 27 ms
10,496 KB
testcase_10 AC 27 ms
10,496 KB
testcase_11 AC 25 ms
10,624 KB
testcase_12 AC 27 ms
10,624 KB
testcase_13 AC 27 ms
10,496 KB
testcase_14 AC 28 ms
10,624 KB
testcase_15 AC 26 ms
10,752 KB
testcase_16 AC 26 ms
10,624 KB
testcase_17 AC 28 ms
10,752 KB
testcase_18 AC 28 ms
10,496 KB
testcase_19 AC 27 ms
10,496 KB
testcase_20 AC 27 ms
10,624 KB
testcase_21 AC 29 ms
10,624 KB
testcase_22 AC 28 ms
10,624 KB
testcase_23 AC 27 ms
10,496 KB
testcase_24 AC 415 ms
18,560 KB
testcase_25 AC 418 ms
18,432 KB
testcase_26 AC 424 ms
18,688 KB
testcase_27 AC 417 ms
18,816 KB
testcase_28 AC 410 ms
18,560 KB
testcase_29 RE -
testcase_30 AC 3,688 ms
81,280 KB
testcase_31 RE -
testcase_32 AC 3,626 ms
81,408 KB
testcase_33 AC 3,602 ms
81,408 KB
testcase_34 AC 3,679 ms
81,408 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):
    lst.append(["0"]+input().split()+["0"])
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