結果

問題 No.697 池の数はいくつか
ユーザー syunsukesyunsuke
提出日時 2018-06-21 23:57:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,593 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 111,488 KB
最終ジャッジ日時 2024-11-25 13:45:41
合計ジャッジ時間 80,154 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
42,240 KB
testcase_01 AC 27 ms
17,824 KB
testcase_02 WA -
testcase_03 AC 27 ms
39,016 KB
testcase_04 AC 25 ms
39,268 KB
testcase_05 AC 27 ms
43,876 KB
testcase_06 AC 28 ms
111,488 KB
testcase_07 AC 26 ms
111,488 KB
testcase_08 AC 26 ms
103,680 KB
testcase_09 AC 26 ms
103,936 KB
testcase_10 AC 26 ms
11,008 KB
testcase_11 AC 26 ms
10,880 KB
testcase_12 AC 26 ms
11,008 KB
testcase_13 AC 26 ms
10,880 KB
testcase_14 AC 28 ms
10,880 KB
testcase_15 AC 26 ms
11,008 KB
testcase_16 AC 27 ms
10,752 KB
testcase_17 AC 26 ms
11,008 KB
testcase_18 AC 26 ms
10,880 KB
testcase_19 AC 26 ms
10,752 KB
testcase_20 AC 26 ms
10,752 KB
testcase_21 AC 27 ms
11,008 KB
testcase_22 AC 27 ms
10,880 KB
testcase_23 AC 26 ms
10,880 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

HW=input()
HW=HW.rstrip().split(" ")
H=int(HW[0])
W=int(HW[1])

list1=[]
list1.append([2]*(W+2))

for i in range(H):
    list2=[2]
    line=input()
    line=line.rstrip().split(" ")
    for j in range(W):
        list2.append(int(line[j]))
    list2.append(2)
    list1.append(list2)
list1.append([2]*(W+2))
    
#print(list1)

count=0
box=[]
for k in range(1,H+1):
    
    for l in range(1,W+1):
        
        if list1[k][l]==1:
            count=count+1
            list1[k][l]=3
            if list1[k][l+1]==1:
                box.append([k,l+1])
            if list1[k][l-1]==1:
                box.append([k,l-1])
            if list1[k+1][l]==1:
                box.append([k+1,l])
            if list1[k-1][l]==1:
                box.append([k-1,l])
            if len(box)==0:
                pass
            else:
                for n in range(H*W):
                    list1[box[0][0]][box[0][1]]=3
                    if list1[box[0][0]][box[0][1]+1]==1:
                        box.append([box[0][0],box[0][1]+1])
                    if list1[box[0][0]][box[0][1]-1]==1:
                        box.append([box[0][0],box[0][1]-1])
                    if list1[box[0][0]+1][box[0][1]]==1:
                        box.append([box[0][0]+1,box[0][1]])
                    if list1[box[0][0]-1][box[0][1]]==1:
                        box.append([box[0][0]-1,box[0][1]])
                    box.pop(0)
                    if len(box)==0:
                        break
                    else:
                        n+=1
        else:
            l+=1
#print(list1)
print(count)
0