結果

問題 No.2946 Puyo
ユーザー nouka28nouka28
提出日時 2024-09-24 19:44:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 330 ms / 2,000 ms
コード長 536 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,144 KB
実行使用メモリ 124,188 KB
最終ジャッジ日時 2024-09-24 19:45:14
合計ジャッジ時間 14,422 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,948 KB
testcase_01 AC 34 ms
52,492 KB
testcase_02 AC 34 ms
53,124 KB
testcase_03 AC 313 ms
124,164 KB
testcase_04 AC 317 ms
124,188 KB
testcase_05 AC 306 ms
124,044 KB
testcase_06 AC 330 ms
124,048 KB
testcase_07 AC 304 ms
124,036 KB
testcase_08 AC 99 ms
79,748 KB
testcase_09 AC 167 ms
92,228 KB
testcase_10 AC 102 ms
79,876 KB
testcase_11 AC 200 ms
100,568 KB
testcase_12 AC 86 ms
79,120 KB
testcase_13 AC 43 ms
61,752 KB
testcase_14 AC 109 ms
81,448 KB
testcase_15 AC 90 ms
78,592 KB
testcase_16 AC 130 ms
84,168 KB
testcase_17 AC 218 ms
103,168 KB
testcase_18 AC 82 ms
76,764 KB
testcase_19 AC 145 ms
87,428 KB
testcase_20 AC 173 ms
90,856 KB
testcase_21 AC 256 ms
100,620 KB
testcase_22 AC 99 ms
79,292 KB
testcase_23 AC 164 ms
89,296 KB
testcase_24 AC 275 ms
106,640 KB
testcase_25 AC 242 ms
103,204 KB
testcase_26 AC 304 ms
105,648 KB
testcase_27 AC 71 ms
73,256 KB
testcase_28 AC 237 ms
106,372 KB
testcase_29 AC 308 ms
114,556 KB
testcase_30 AC 206 ms
98,264 KB
testcase_31 AC 270 ms
108,992 KB
testcase_32 AC 256 ms
104,724 KB
testcase_33 AC 219 ms
100,732 KB
testcase_34 AC 300 ms
112,760 KB
testcase_35 AC 285 ms
105,484 KB
testcase_36 AC 264 ms
106,388 KB
testcase_37 AC 278 ms
108,864 KB
testcase_38 AC 233 ms
99,620 KB
testcase_39 AC 225 ms
98,300 KB
testcase_40 AC 172 ms
90,508 KB
testcase_41 AC 279 ms
107,432 KB
testcase_42 AC 256 ms
104,492 KB
testcase_43 AC 240 ms
114,364 KB
testcase_44 AC 283 ms
123,036 KB
testcase_45 AC 236 ms
108,884 KB
testcase_46 AC 184 ms
91,812 KB
testcase_47 AC 242 ms
101,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w=map(int,input().split())

s=[list(input())for i in range(h)]

t=[[0]*w for i in range(h)]

for i in range(h):
	for j in range(w):
		if t[i][j]:continue
		Q=[(i,j)]
		Q2=[(i,j)]
		di=[1,0,-1,0]
		dj=[0,1,0,-1]

		t[i][j]=1

		while len(Q):
			pi,pj=Q.pop()
			for k in range(4):
				ni=pi+di[k]
				nj=pj+dj[k]
				if 0<=ni<h and 0<=nj<w and s[i][j]==s[ni][nj] and not t[ni][nj]:
					t[ni][nj]=1
					Q.append((ni,nj))
					Q2.append((ni,nj))
		if len(Q2)<4:continue
		for e in Q2:
			s[e[0]][e[1]]="."

for i in s:print("".join(i))
0