結果

問題 No.2946 Puyo
ユーザー tkykwtnbtkykwtnb
提出日時 2024-10-25 22:26:59
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 801 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 366,628 KB
最終ジャッジ日時 2024-10-25 22:27:16
合計ジャッジ時間 13,685 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
61,064 KB
testcase_01 AC 41 ms
54,376 KB
testcase_02 AC 41 ms
54,372 KB
testcase_03 AC 713 ms
124,720 KB
testcase_04 AC 744 ms
124,704 KB
testcase_05 AC 719 ms
124,988 KB
testcase_06 AC 739 ms
124,724 KB
testcase_07 AC 742 ms
125,340 KB
testcase_08 AC 137 ms
80,360 KB
testcase_09 AC 318 ms
93,240 KB
testcase_10 AC 137 ms
79,884 KB
testcase_11 AC 405 ms
101,176 KB
testcase_12 AC 120 ms
80,264 KB
testcase_13 AC 50 ms
63,744 KB
testcase_14 AC 150 ms
82,200 KB
testcase_15 AC 143 ms
80,100 KB
testcase_16 AC 186 ms
85,468 KB
testcase_17 AC 344 ms
103,492 KB
testcase_18 AC 87 ms
77,504 KB
testcase_19 AC 210 ms
87,628 KB
testcase_20 AC 254 ms
90,828 KB
testcase_21 AC 385 ms
101,020 KB
testcase_22 AC 126 ms
80,140 KB
testcase_23 AC 292 ms
89,752 KB
testcase_24 AC 561 ms
107,288 KB
testcase_25 AC 480 ms
103,384 KB
testcase_26 AC 506 ms
106,072 KB
testcase_27 AC 87 ms
77,412 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:
            ans[i][j]=G[i][j]
for i in range(H):
    print("".join(ans[i]))
0