結果

問題 No.2946 Puyo
ユーザー Tamiji153Tamiji153
提出日時 2024-12-23 22:26:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 520 ms / 2,000 ms
コード長 784 bytes
コンパイル時間 554 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 125,596 KB
最終ジャッジ日時 2024-12-23 22:26:26
合計ジャッジ時間 21,250 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
53,632 KB
testcase_01 AC 48 ms
53,760 KB
testcase_02 AC 48 ms
53,632 KB
testcase_03 AC 503 ms
125,184 KB
testcase_04 AC 506 ms
125,596 KB
testcase_05 AC 520 ms
125,268 KB
testcase_06 AC 499 ms
125,312 KB
testcase_07 AC 498 ms
125,472 KB
testcase_08 AC 136 ms
80,148 KB
testcase_09 AC 267 ms
92,960 KB
testcase_10 AC 154 ms
80,000 KB
testcase_11 AC 313 ms
101,248 KB
testcase_12 AC 139 ms
80,000 KB
testcase_13 AC 55 ms
59,264 KB
testcase_14 AC 265 ms
82,892 KB
testcase_15 AC 177 ms
80,140 KB
testcase_16 AC 262 ms
86,180 KB
testcase_17 AC 441 ms
105,160 KB
testcase_18 AC 121 ms
77,284 KB
testcase_19 AC 289 ms
89,244 KB
testcase_20 AC 313 ms
92,500 KB
testcase_21 AC 421 ms
101,524 KB
testcase_22 AC 170 ms
80,384 KB
testcase_23 AC 336 ms
91,516 KB
testcase_24 AC 497 ms
109,072 KB
testcase_25 AC 491 ms
105,288 KB
testcase_26 AC 492 ms
108,364 KB
testcase_27 AC 133 ms
77,980 KB
testcase_28 AC 345 ms
106,624 KB
testcase_29 AC 398 ms
115,660 KB
testcase_30 AC 299 ms
98,496 KB
testcase_31 AC 349 ms
108,544 KB
testcase_32 AC 338 ms
106,748 KB
testcase_33 AC 311 ms
101,804 KB
testcase_34 AC 389 ms
113,744 KB
testcase_35 AC 352 ms
106,788 KB
testcase_36 AC 320 ms
107,240 KB
testcase_37 AC 324 ms
109,704 KB
testcase_38 AC 328 ms
100,748 KB
testcase_39 AC 298 ms
99,556 KB
testcase_40 AC 237 ms
91,592 KB
testcase_41 AC 355 ms
108,704 KB
testcase_42 AC 342 ms
105,384 KB
testcase_43 AC 326 ms
111,104 KB
testcase_44 AC 382 ms
116,224 KB
testcase_45 AC 353 ms
107,776 KB
testcase_46 AC 266 ms
93,188 KB
testcase_47 AC 339 ms
102,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
h,w=map(int,input().split())
S=[list(input()) for _ in range(h)]
V=[[1]*w for _ in range(h)]
for i in range(h):
	for j in range(w):
		if V[i][j]:
			V[i][j]=0
			d=deque([(i,j)])
			A=[(i,j)]
			while d:
				p,q=d.popleft()
				if p and V[p-1][q] and S[p-1][q]==S[p][q]:
					d.append((p-1,q))
					V[p-1][q]=0
					A.append((p-1,q))
				if q and V[p][q-1] and S[p][q-1]==S[p][q]:
					d.append((p,q-1))
					V[p][q-1]=0
					A.append((p,q-1))
				if p<h-1 and V[p+1][q] and S[p+1][q]==S[p][q]:
					d.append((p+1,q))
					V[p+1][q]=0
					A.append((p+1,q))
				if q<w-1 and V[p][q+1] and S[p][q+1]==S[p][q]:
					d.append((p,q+1))
					V[p][q+1]=0
					A.append((p,q+1))
			if len(A)>=4:
				for x,y in A:
					S[x][y]='.'
for x in S:
	print(''.join(x))
0