結果

問題 No.402 最も海から遠い場所
ユーザー H3PO4H3PO4
提出日時 2020-07-20 17:23:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 440 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,072 KB
実行使用メモリ 150,156 KB
最終ジャッジ日時 2024-06-06 12:19:59
合計ジャッジ時間 3,966 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,436 KB
testcase_01 AC 38 ms
53,316 KB
testcase_02 AC 46 ms
60,160 KB
testcase_03 WA -
testcase_04 AC 37 ms
53,312 KB
testcase_05 AC 38 ms
52,648 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 38 ms
52,728 KB
testcase_09 AC 38 ms
52,412 KB
testcase_10 AC 38 ms
51,948 KB
testcase_11 AC 46 ms
61,076 KB
testcase_12 AC 39 ms
53,016 KB
testcase_13 AC 54 ms
64,328 KB
testcase_14 AC 54 ms
64,352 KB
testcase_15 AC 64 ms
68,452 KB
testcase_16 AC 71 ms
71,436 KB
testcase_17 AC 246 ms
107,600 KB
testcase_18 AC 387 ms
150,156 KB
testcase_19 AC 223 ms
149,932 KB
testcase_20 AC 369 ms
149,980 KB
testcase_21 AC 301 ms
149,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp = [[0] * W for _ in range(H)]
for h in range(H):
    if S[h][0] == '#':
        dp[h][0] = 1
for w in range(1, W):
    if S[0][w] == '#':
        dp[0][w] = 1

M = 0
for h in range(1, H):
    for w in range(1, W):
        if S[h][w] == '#':
            dp[h][w] = min(dp[h - 1][w], dp[h][w - 1], dp[h - 1][w - 1]) + 1
            M = max(M, dp[h][w])
print((M + 1) // 2)
0