結果

問題 No.2946 Puyo
ユーザー FacadeFacade
提出日時 2024-10-28 22:07:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 392 ms / 2,000 ms
コード長 871 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 82,068 KB
実行使用メモリ 117,116 KB
最終ジャッジ日時 2024-10-28 22:07:46
合計ジャッジ時間 14,629 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,876 KB
testcase_01 AC 39 ms
53,928 KB
testcase_02 AC 38 ms
54,852 KB
testcase_03 AC 375 ms
116,828 KB
testcase_04 AC 391 ms
116,596 KB
testcase_05 AC 354 ms
116,980 KB
testcase_06 AC 368 ms
116,628 KB
testcase_07 AC 392 ms
117,116 KB
testcase_08 AC 108 ms
79,604 KB
testcase_09 AC 194 ms
89,808 KB
testcase_10 AC 117 ms
79,436 KB
testcase_11 AC 242 ms
96,964 KB
testcase_12 AC 99 ms
78,972 KB
testcase_13 AC 50 ms
64,172 KB
testcase_14 AC 110 ms
80,716 KB
testcase_15 AC 99 ms
78,876 KB
testcase_16 AC 121 ms
83,644 KB
testcase_17 AC 231 ms
99,116 KB
testcase_18 AC 81 ms
76,952 KB
testcase_19 AC 151 ms
85,416 KB
testcase_20 AC 177 ms
88,444 KB
testcase_21 AC 241 ms
96,332 KB
testcase_22 AC 101 ms
79,156 KB
testcase_23 AC 177 ms
87,632 KB
testcase_24 AC 301 ms
102,200 KB
testcase_25 AC 290 ms
99,064 KB
testcase_26 AC 334 ms
101,448 KB
testcase_27 AC 80 ms
76,960 KB
testcase_28 AC 263 ms
100,248 KB
testcase_29 AC 331 ms
108,484 KB
testcase_30 AC 217 ms
94,700 KB
testcase_31 AC 322 ms
104,116 KB
testcase_32 AC 279 ms
100,436 KB
testcase_33 AC 246 ms
96,708 KB
testcase_34 AC 324 ms
105,920 KB
testcase_35 AC 320 ms
100,940 KB
testcase_36 AC 309 ms
101,720 KB
testcase_37 AC 313 ms
103,944 KB
testcase_38 AC 288 ms
96,172 KB
testcase_39 AC 263 ms
95,256 KB
testcase_40 AC 201 ms
88,752 KB
testcase_41 AC 339 ms
102,632 KB
testcase_42 AC 314 ms
100,100 KB
testcase_43 AC 249 ms
106,492 KB
testcase_44 AC 297 ms
116,504 KB
testcase_45 AC 259 ms
101,344 KB
testcase_46 AC 185 ms
89,516 KB
testcase_47 AC 275 ms
97,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
h,w=map(int,input().split())
grid=[list(input()) for _ in range(h)]


move=[(1,0),(0,1),(0,-1),(-1,0)]
for i in range(h):
    for j in range(w):
        change=[]
        que=deque()
        if grid[i][j]!=".":
            word=grid[i][j]
            que.append((i,j))
            change.append((i,j))
            grid[i][j]="."
            while que:
                nowx,nowy=que.popleft()
                for x,y in move:
                    if 0<=nowx+x<h and 0<=nowy+y<w:
                        if grid[nowx+x][nowy+y]==word:
                            grid[nowx+x][nowy+y]="."
                            que.append((nowx+x,nowy+y))
                            change.append((nowx+x,nowy+y))
            if len(change)<4:
                for x,y in change:
                    grid[x][y]=word
for ans in grid:
    print("".join(ans))
0