結果

問題 No.402 最も海から遠い場所
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2022-09-04 15:20:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 546 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 82,176 KB
最終ジャッジ日時 2024-11-18 20:42:11
合計ジャッジ時間 3,924 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
55,808 KB
testcase_01 AC 48 ms
55,296 KB
testcase_02 AC 56 ms
63,488 KB
testcase_03 WA -
testcase_04 AC 46 ms
55,552 KB
testcase_05 AC 46 ms
55,680 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 45 ms
55,424 KB
testcase_09 AC 46 ms
56,064 KB
testcase_10 AC 46 ms
55,296 KB
testcase_11 AC 57 ms
65,536 KB
testcase_12 AC 48 ms
55,936 KB
testcase_13 AC 67 ms
69,888 KB
testcase_14 AC 68 ms
69,504 KB
testcase_15 AC 87 ms
76,616 KB
testcase_16 AC 88 ms
76,744 KB
testcase_17 AC 273 ms
78,592 KB
testcase_18 AC 327 ms
82,176 KB
testcase_19 AC 260 ms
81,920 KB
testcase_20 AC 306 ms
81,236 KB
testcase_21 AC 317 ms
81,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# import pypyjit
# pypyjit.set_param('max_unroll_recursion=-1')
from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline

H,W = map(int,input().split())
M = 0
dp0 = list(input())[:-1]
dp0 = [int(i=='#') for i in dp0]
for _ in range(H-1):
    dp1 = list(input())[:-1]
    dp1 = [int(i=='#') for i in dp1]
    for j in range(1,W):
        if dp1[j]==1:
            dp1[j] = min(dp1[j-1],dp0[j],dp0[j-1])+1
            M = max(M,dp1[j])
    dp0 = dp1[:]
print((M+1)//2)
0