結果

問題 No.2946 Puyo
ユーザー while-true-ifwhile-true-if
提出日時 2024-10-25 21:27:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 937 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 40,904 KB
最終ジャッジ日時 2024-10-25 21:27:57
合計ジャッジ時間 38,105 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 32 ms
10,880 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 TLE -
testcase_04 AC 1,972 ms
26,624 KB
testcase_05 TLE -
testcase_06 AC 1,960 ms
26,624 KB
testcase_07 TLE -
testcase_08 AC 146 ms
11,904 KB
testcase_09 AC 601 ms
16,000 KB
testcase_10 AC 137 ms
11,776 KB
testcase_11 AC 942 ms
18,944 KB
testcase_12 AC 143 ms
11,904 KB
testcase_13 AC 32 ms
10,752 KB
testcase_14 AC 172 ms
12,544 KB
testcase_15 AC 96 ms
11,520 KB
testcase_16 AC 256 ms
13,440 KB
testcase_17 AC 828 ms
19,712 KB
testcase_18 AC 41 ms
10,880 KB
testcase_19 AC 314 ms
14,336 KB
testcase_20 AC 407 ms
15,488 KB
testcase_21 AC 715 ms
18,816 KB
testcase_22 AC 110 ms
11,776 KB
testcase_23 AC 472 ms
15,104 KB
testcase_24 AC 1,148 ms
20,992 KB
testcase_25 AC 997 ms
19,712 KB
testcase_26 AC 1,102 ms
20,736 KB
testcase_27 AC 46 ms
10,880 KB
testcase_28 AC 784 ms
27,136 KB
testcase_29 AC 1,088 ms
29,568 KB
testcase_30 AC 578 ms
22,656 KB
testcase_31 AC 884 ms
26,368 KB
testcase_32 AC 887 ms
22,912 KB
testcase_33 AC 750 ms
19,456 KB
testcase_34 AC 1,129 ms
24,064 KB
testcase_35 AC 939 ms
20,992 KB
testcase_36 AC 1,006 ms
21,888 KB
testcase_37 AC 1,102 ms
22,272 KB
testcase_38 AC 848 ms
18,816 KB
testcase_39 AC 785 ms
18,432 KB
testcase_40 AC 550 ms
15,744 KB
testcase_41 AC 1,122 ms
21,376 KB
testcase_42 AC 1,055 ms
20,096 KB
testcase_43 AC 743 ms
35,200 KB
testcase_44 AC 920 ms
40,904 KB
testcase_45 AC 752 ms
29,008 KB
testcase_46 AC 479 ms
19,200 KB
testcase_47 AC 677 ms
22,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**6)

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

dx = [1, -1, 0, 0]
dy = [0, 0, 1, -1]

visited = [[False] * W for _ in range(H)]

def dfs(x, y, char):
    stack = [(x, y)]
    component = [(x, y)]
    visited[x][y] = True
    while stack:
        cx, cy = stack.pop()
        for i in range(4):
            nx, ny = cx + dx[i], cy + dy[i]
            if 0 <= nx < H and 0 <= ny < W and not visited[nx][ny] and grid[nx][ny] == char:
                visited[nx][ny] = True
                stack.append((nx, ny))
                component.append((nx, ny))
    return component

for i in range(H):
    for j in range(W):
        if grid[i][j] != '.' and not visited[i][j]:
            component = dfs(i, j, grid[i][j])
            if len(component) >= 4:
                for x, y in component:
                    grid[x][y] = '.'

for row in grid:
    print(''.join(row))
0