結果

問題 No.402 最も海から遠い場所
ユーザー 双六双六
提出日時 2020-09-16 00:37:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,156 ms / 3,000 ms
コード長 689 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 503,340 KB
最終ジャッジ日時 2024-06-22 02:54:22
合計ジャッジ時間 8,138 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,280 KB
testcase_01 AC 44 ms
54,224 KB
testcase_02 AC 52 ms
63,716 KB
testcase_03 AC 41 ms
55,500 KB
testcase_04 AC 42 ms
54,488 KB
testcase_05 AC 41 ms
54,660 KB
testcase_06 AC 42 ms
54,848 KB
testcase_07 AC 42 ms
54,436 KB
testcase_08 AC 41 ms
54,816 KB
testcase_09 AC 42 ms
55,248 KB
testcase_10 AC 42 ms
53,916 KB
testcase_11 AC 52 ms
62,748 KB
testcase_12 AC 43 ms
54,060 KB
testcase_13 AC 62 ms
68,380 KB
testcase_14 AC 62 ms
68,152 KB
testcase_15 AC 92 ms
86,804 KB
testcase_16 AC 98 ms
86,364 KB
testcase_17 AC 610 ms
282,808 KB
testcase_18 AC 1,156 ms
503,340 KB
testcase_19 AC 958 ms
503,152 KB
testcase_20 AC 1,111 ms
503,340 KB
testcase_21 AC 1,067 ms
503,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# import sys; input = sys.stdin.buffer.readline
# sys.setrecursionlimit(10**7)
from collections import defaultdict
mod = 10 ** 9 + 7; INF = float("inf")

def getlist():
	return list(map(int, input().split()))

def main():
	H, W = getlist()
	table = []
	for i in range(H):
		l = list(input())
		table.append(l)

	res = 0
	DP = [[0] * W for i in range(H)]
	for i in range(H):
		for j in range(W):
			if table[i][j] == "#":
				DP[i][j] = 1
				res = 1

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

	ans = int(res + 1) // 2
	print(ans)

if __name__ == '__main__':
	main()
0