結果

問題 No.2946 Puyo
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-10-25 21:25:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 334 ms / 2,000 ms
コード長 527 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 82,552 KB
実行使用メモリ 125,436 KB
最終ジャッジ日時 2024-10-25 21:25:57
合計ジャッジ時間 12,217 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,464 KB
testcase_01 AC 37 ms
52,200 KB
testcase_02 AC 36 ms
52,764 KB
testcase_03 AC 310 ms
124,376 KB
testcase_04 AC 312 ms
124,280 KB
testcase_05 AC 312 ms
124,392 KB
testcase_06 AC 308 ms
124,168 KB
testcase_07 AC 310 ms
124,264 KB
testcase_08 AC 98 ms
79,732 KB
testcase_09 AC 179 ms
92,688 KB
testcase_10 AC 96 ms
79,248 KB
testcase_11 AC 193 ms
100,420 KB
testcase_12 AC 90 ms
79,044 KB
testcase_13 AC 43 ms
59,880 KB
testcase_14 AC 100 ms
81,492 KB
testcase_15 AC 119 ms
79,540 KB
testcase_16 AC 128 ms
84,792 KB
testcase_17 AC 201 ms
103,776 KB
testcase_18 AC 71 ms
73,256 KB
testcase_19 AC 137 ms
87,648 KB
testcase_20 AC 157 ms
90,500 KB
testcase_21 AC 196 ms
100,008 KB
testcase_22 AC 97 ms
79,152 KB
testcase_23 AC 169 ms
89,224 KB
testcase_24 AC 288 ms
106,672 KB
testcase_25 AC 257 ms
103,040 KB
testcase_26 AC 282 ms
105,752 KB
testcase_27 AC 70 ms
74,404 KB
testcase_28 AC 251 ms
111,000 KB
testcase_29 AC 334 ms
117,128 KB
testcase_30 AC 208 ms
101,148 KB
testcase_31 AC 273 ms
112,216 KB
testcase_32 AC 254 ms
105,112 KB
testcase_33 AC 237 ms
100,760 KB
testcase_34 AC 295 ms
112,364 KB
testcase_35 AC 257 ms
105,512 KB
testcase_36 AC 267 ms
106,748 KB
testcase_37 AC 263 ms
109,252 KB
testcase_38 AC 224 ms
99,644 KB
testcase_39 AC 211 ms
98,368 KB
testcase_40 AC 163 ms
90,568 KB
testcase_41 AC 265 ms
107,676 KB
testcase_42 AC 242 ms
104,528 KB
testcase_43 AC 270 ms
123,128 KB
testcase_44 AC 311 ms
125,436 KB
testcase_45 AC 260 ms
114,252 KB
testcase_46 AC 180 ms
93,500 KB
testcase_47 AC 236 ms
103,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w=map(int,input().split())
g=[list(input()) for i in range(h)]
v=[[0]*w for i in range(h)]
for i in range(h):
	for j in range(w):
		if g[i][j]!="." and v[i][j]==0:
			c=g[i][j]
			u=[]
			q=[(i,j)]
			v[i][j]=1
			for sx,sy in q:
				u+=[(sx,sy)]
				dx,dy=1,0
				for _ in range(4):
					tx,ty=sx+dx,sy+dy
					dx,dy=-dy,dx
					if 0<=tx<h and 0<=ty<w:
						if g[tx][ty]==c and v[tx][ty]==0:
							q+=[(tx,ty)]
							v[tx][ty]=1
			if len(u)>=4:
				for x,y in u:
					g[x][y]="."
for i in range(h):
	print("".join(g[i]))
0