結果

問題 No.2946 Puyo
ユーザー ああいいああいい
提出日時 2024-11-09 12:30:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 491 ms / 2,000 ms
コード長 602 bytes
コンパイル時間 796 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 135,808 KB
最終ジャッジ日時 2024-11-09 12:30:43
合計ジャッジ時間 19,051 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,968 KB
testcase_01 AC 33 ms
52,224 KB
testcase_02 AC 33 ms
52,096 KB
testcase_03 AC 485 ms
117,404 KB
testcase_04 AC 451 ms
117,556 KB
testcase_05 AC 482 ms
117,448 KB
testcase_06 AC 491 ms
117,308 KB
testcase_07 AC 449 ms
117,372 KB
testcase_08 AC 101 ms
79,120 KB
testcase_09 AC 204 ms
90,004 KB
testcase_10 AC 105 ms
79,104 KB
testcase_11 AC 288 ms
96,956 KB
testcase_12 AC 94 ms
79,156 KB
testcase_13 AC 44 ms
61,568 KB
testcase_14 AC 117 ms
81,024 KB
testcase_15 AC 81 ms
78,264 KB
testcase_16 AC 126 ms
83,072 KB
testcase_17 AC 241 ms
99,476 KB
testcase_18 AC 75 ms
76,928 KB
testcase_19 AC 160 ms
85,760 KB
testcase_20 AC 196 ms
88,320 KB
testcase_21 AC 261 ms
96,616 KB
testcase_22 AC 108 ms
79,296 KB
testcase_23 AC 241 ms
88,448 KB
testcase_24 AC 379 ms
102,400 KB
testcase_25 AC 357 ms
98,980 KB
testcase_26 AC 374 ms
101,376 KB
testcase_27 AC 74 ms
76,800 KB
testcase_28 AC 323 ms
106,624 KB
testcase_29 AC 453 ms
113,792 KB
testcase_30 AC 261 ms
97,664 KB
testcase_31 AC 339 ms
109,696 KB
testcase_32 AC 371 ms
102,972 KB
testcase_33 AC 294 ms
97,320 KB
testcase_34 AC 381 ms
107,828 KB
testcase_35 AC 353 ms
101,504 KB
testcase_36 AC 383 ms
102,880 KB
testcase_37 AC 369 ms
104,400 KB
testcase_38 AC 300 ms
96,404 KB
testcase_39 AC 281 ms
95,260 KB
testcase_40 AC 205 ms
88,924 KB
testcase_41 AC 388 ms
103,424 KB
testcase_42 AC 326 ms
100,224 KB
testcase_43 AC 353 ms
119,948 KB
testcase_44 AC 457 ms
135,808 KB
testcase_45 AC 341 ms
110,208 KB
testcase_46 AC 223 ms
92,288 KB
testcase_47 AC 316 ms
99,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W = map(int,input().split())
G = [input() for _ in range(H)]

ans = [[G[i][j] for j in range(W)] for i in range(H)]
l = [(0,1),(0,-1),(1,0),(-1,0)]
for i in range(H):
	for j in range(W):
		if ans[i][j] != ".":
			s = set()
			stack = [(i,j)]
			s.add((i,j))
			a = ans[i][j]
			while stack:
				x,y = stack.pop()
				for xx,yy in l:
					if 0 <= x + xx < H and 0 <= y + yy < W:
						if (x + xx,y + yy) not in s and ans[x + xx][y + yy] == a:
							s.add((x + xx,y + yy))
							stack.append((x + xx,y + yy))
			if len(s) > 3:
				for x,y in s:
					ans[x][y] = "."
for l in ans:
	print("".join(l))
	
0