結果

問題 No.2946 Puyo
ユーザー ねしんねしん
提出日時 2024-10-25 21:41:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,145 ms / 2,000 ms
コード長 980 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 283,248 KB
最終ジャッジ日時 2024-10-25 21:42:15
合計ジャッジ時間 30,972 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,932 KB
testcase_01 AC 41 ms
54,192 KB
testcase_02 AC 40 ms
55,740 KB
testcase_03 AC 1,145 ms
283,248 KB
testcase_04 AC 1,124 ms
268,384 KB
testcase_05 AC 1,122 ms
267,972 KB
testcase_06 AC 1,114 ms
267,784 KB
testcase_07 AC 1,132 ms
267,664 KB
testcase_08 AC 167 ms
88,184 KB
testcase_09 AC 475 ms
137,344 KB
testcase_10 AC 177 ms
86,520 KB
testcase_11 AC 585 ms
180,072 KB
testcase_12 AC 169 ms
88,136 KB
testcase_13 AC 42 ms
55,612 KB
testcase_14 AC 257 ms
94,440 KB
testcase_15 AC 213 ms
86,584 KB
testcase_16 AC 329 ms
105,444 KB
testcase_17 AC 748 ms
195,972 KB
testcase_18 AC 134 ms
78,268 KB
testcase_19 AC 395 ms
112,992 KB
testcase_20 AC 438 ms
127,232 KB
testcase_21 AC 698 ms
175,468 KB
testcase_22 AC 198 ms
86,552 KB
testcase_23 AC 461 ms
122,528 KB
testcase_24 AC 892 ms
205,364 KB
testcase_25 AC 797 ms
185,704 KB
testcase_26 AC 839 ms
199,192 KB
testcase_27 AC 154 ms
78,748 KB
testcase_28 AC 717 ms
163,832 KB
testcase_29 AC 1,023 ms
216,816 KB
testcase_30 AC 578 ms
140,744 KB
testcase_31 AC 834 ms
177,740 KB
testcase_32 AC 801 ms
176,084 KB
testcase_33 AC 700 ms
160,880 KB
testcase_34 AC 973 ms
212,164 KB
testcase_35 AC 774 ms
180,332 KB
testcase_36 AC 771 ms
192,120 KB
testcase_37 AC 854 ms
197,020 KB
testcase_38 AC 604 ms
168,732 KB
testcase_39 AC 579 ms
163,112 KB
testcase_40 AC 402 ms
124,992 KB
testcase_41 AC 768 ms
202,236 KB
testcase_42 AC 685 ms
191,180 KB
testcase_43 AC 711 ms
155,812 KB
testcase_44 AC 865 ms
176,088 KB
testcase_45 AC 675 ms
154,792 KB
testcase_46 AC 491 ms
118,652 KB
testcase_47 AC 679 ms
151,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict,deque
H,W=list(map(int,input().split()))
MAP=[]
for i in range(H):
	s=input()
	MAP.append(s)
ANS=[]
for i in range(H):
	ANS.append(["."]*W)
for i in range(H):
	for j in range(W):
		ANS[i][j]=MAP[i][j]
check=set()
for i in range(H):
	for j in range(W):
		if (i,j) in check:
			continue
		Q=deque()
		c=set()
		Q.append((i,j))
		c.add((i,j))
		while len(Q)>0:
			x,y=Q.popleft()
			if x>0:
				if (x-1,y) not in c and MAP[x-1][y]==MAP[x][y]:
					c.add((x-1,y))
					Q.append((x-1,y))
			if x<H-1:
				if (x+1,y) not in c and MAP[x+1][y]==MAP[x][y]:
					c.add((x+1,y))
					Q.append((x+1,y))
			if y>0:
				if (x,y-1) not in c and MAP[x][y-1]==MAP[x][y]:
					c.add((x,y-1))
					Q.append((x,y-1))
			if y<W-1:
				if (x,y+1) not in c and MAP[x][y+1]==MAP[x][y]:
					c.add((x,y+1))
					Q.append((x,y+1))
		#print(i,j,c)
		if len(c)>=4:
			for x,y in c:
				ANS[x][y]="."
		for k in c:
			check.add(k)
for i in range(H):
	print("".join(ANS[i]))
0