結果
問題 | No.697 池の数はいくつか |
ユーザー | syunsuke |
提出日時 | 2018-06-22 00:07:32 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,923 bytes |
コンパイル時間 | 224 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 98,432 KB |
最終ジャッジ日時 | 2024-11-25 13:43:01 |
合計ジャッジ時間 | 51,872 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
98,432 KB |
testcase_01 | AC | 29 ms
17,700 KB |
testcase_02 | AC | 30 ms
98,432 KB |
testcase_03 | AC | 32 ms
98,176 KB |
testcase_04 | AC | 31 ms
98,304 KB |
testcase_05 | AC | 30 ms
10,880 KB |
testcase_06 | AC | 32 ms
11,008 KB |
testcase_07 | AC | 32 ms
10,880 KB |
testcase_08 | AC | 32 ms
10,752 KB |
testcase_09 | AC | 30 ms
10,880 KB |
testcase_10 | AC | 29 ms
10,880 KB |
testcase_11 | AC | 30 ms
10,880 KB |
testcase_12 | AC | 31 ms
10,752 KB |
testcase_13 | AC | 30 ms
10,752 KB |
testcase_14 | AC | 31 ms
10,880 KB |
testcase_15 | AC | 30 ms
10,752 KB |
testcase_16 | AC | 31 ms
11,008 KB |
testcase_17 | AC | 30 ms
10,752 KB |
testcase_18 | AC | 30 ms
10,880 KB |
testcase_19 | AC | 29 ms
10,880 KB |
testcase_20 | AC | 31 ms
10,752 KB |
testcase_21 | AC | 29 ms
10,880 KB |
testcase_22 | AC | 29 ms
10,752 KB |
testcase_23 | AC | 30 ms
10,880 KB |
testcase_24 | AC | 1,398 ms
19,712 KB |
testcase_25 | AC | 1,356 ms
19,456 KB |
testcase_26 | AC | 1,394 ms
19,456 KB |
testcase_27 | AC | 1,382 ms
19,456 KB |
testcase_28 | AC | 1,379 ms
19,456 KB |
testcase_29 | TLE | - |
testcase_30 | TLE | - |
testcase_31 | TLE | - |
testcase_32 | TLE | - |
testcase_33 | TLE | - |
testcase_34 | TLE | - |
ソースコード
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: #print(list1) 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: if [box[0][0],box[0][1]+1] not in box: box.append([box[0][0],box[0][1]+1]) if list1[box[0][0]][box[0][1]-1]==1: if [box[0][0],box[0][1]-1] not in box: box.append([box[0][0],box[0][1]-1]) if list1[box[0][0]+1][box[0][1]]==1: if [box[0][0]+1,box[0][1]] not in box: box.append([box[0][0]+1,box[0][1]]) if list1[box[0][0]-1][box[0][1]]==1: if [box[0][0]-1,box[0][1]] not in box: box.append([box[0][0]-1,box[0][1]]) box.pop(0) if len(box)==0: break else: #print(box) n+=1 else: l+=1 #print(list1) print(count)