結果

問題 No.402 最も海から遠い場所
ユーザー tktk_snsntktk_snsn
提出日時 2020-12-13 01:54:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 436 ms / 3,000 ms
コード長 495 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,140 KB
実行使用メモリ 147,756 KB
最終ジャッジ日時 2024-09-19 22:41:28
合計ジャッジ時間 4,173 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,496 KB
testcase_01 AC 37 ms
54,776 KB
testcase_02 AC 51 ms
63,512 KB
testcase_03 AC 36 ms
54,484 KB
testcase_04 AC 36 ms
54,312 KB
testcase_05 AC 36 ms
54,628 KB
testcase_06 AC 35 ms
54,120 KB
testcase_07 AC 37 ms
54,848 KB
testcase_08 AC 37 ms
55,176 KB
testcase_09 AC 37 ms
54,600 KB
testcase_10 AC 38 ms
54,612 KB
testcase_11 AC 43 ms
62,384 KB
testcase_12 AC 37 ms
56,060 KB
testcase_13 AC 54 ms
69,832 KB
testcase_14 AC 56 ms
70,444 KB
testcase_15 AC 68 ms
78,112 KB
testcase_16 AC 75 ms
78,808 KB
testcase_17 AC 279 ms
110,864 KB
testcase_18 AC 436 ms
147,604 KB
testcase_19 AC 271 ms
147,272 KB
testcase_20 AC 385 ms
147,364 KB
testcase_21 AC 368 ms
147,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
import sys
input = sys.stdin.readline
sys.setrecursionlimit(10 ** 7)


H, W = map(int, input().split())
G = [[0] * (W + 1) for _ in range(H + 1)]
for i in range(1, H + 1):
    for j, v in enumerate(input().rstrip(), 1):
        if v == "#":
            G[i][j] = -1

for i in range(1, H + 1):
    for j in range(1, W + 1):
        if G[i][j] == -1:
            G[i][j] = min(G[i-1][j], G[i][j-1], G[i-1][j-1]) + 1

ans = max(max(g) for g in G)
print((ans + 1) // 2)
0