結果

問題 No.2946 Puyo
ユーザー tkykwtnbtkykwtnb
提出日時 2024-10-25 22:33:43
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 838 bytes
コンパイル時間 520 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 361,384 KB
最終ジャッジ日時 2024-10-25 22:33:57
合計ジャッジ時間 13,497 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
61,652 KB
testcase_01 AC 40 ms
54,712 KB
testcase_02 AC 40 ms
55,644 KB
testcase_03 AC 690 ms
125,504 KB
testcase_04 AC 690 ms
124,908 KB
testcase_05 AC 634 ms
124,676 KB
testcase_06 AC 687 ms
124,788 KB
testcase_07 AC 665 ms
124,904 KB
testcase_08 AC 143 ms
80,704 KB
testcase_09 AC 330 ms
92,988 KB
testcase_10 AC 137 ms
79,964 KB
testcase_11 AC 388 ms
101,236 KB
testcase_12 AC 130 ms
80,056 KB
testcase_13 AC 47 ms
62,268 KB
testcase_14 AC 145 ms
82,172 KB
testcase_15 AC 138 ms
79,376 KB
testcase_16 AC 163 ms
84,900 KB
testcase_17 AC 344 ms
103,876 KB
testcase_18 AC 90 ms
77,484 KB
testcase_19 AC 197 ms
87,788 KB
testcase_20 AC 227 ms
91,044 KB
testcase_21 AC 307 ms
100,744 KB
testcase_22 AC 124 ms
80,576 KB
testcase_23 AC 256 ms
89,712 KB
testcase_24 AC 476 ms
107,408 KB
testcase_25 AC 427 ms
103,268 KB
testcase_26 AC 460 ms
106,340 KB
testcase_27 AC 86 ms
77,480 KB
testcase_28 TLE -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
H,W=map(int,input().split())
G=[list(input()) for _ in range(H)]
ans=[["" for _ in range(W)] for _ in range(H)]
for i in range(H):
    for j in range(W):
        if G[i][j]==".":ans[i][j]=".";continue
        if ans[i][j]!="":continue
        now=G[i][j]
        vis=set()
        Q=deque([(i,j)])
        while Q:
            ci,cj=Q.popleft()
            vis.add((ci,cj))
            for di,dj in [(-1,0),(1,0),(0,-1),(0,1)]:
                if 0<=ci+di<H and 0<=cj+dj<W and (ci+di,cj+dj) not in vis and \
                    G[ci+di][cj+dj]==now:
                    Q.append((ci+di,cj+dj))
        if len(vis)>=4:
            for ii,jj in vis:
                ans[ii][jj]="."
        else:
            for ii,jj in vis:
                ans[ii][jj]=G[ii][jj]
for i in range(H):
    print("".join(ans[i]))
0