結果

問題 No.402 最も海から遠い場所
ユーザー lloyzlloyz
提出日時 2023-01-26 20:17:17
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 422 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 82,076 KB
実行使用メモリ 707,532 KB
最終ジャッジ日時 2024-06-27 11:46:55
合計ジャッジ時間 10,833 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,024 KB
testcase_01 AC 39 ms
52,972 KB
testcase_02 AC 54 ms
62,596 KB
testcase_03 AC 38 ms
53,820 KB
testcase_04 AC 39 ms
52,692 KB
testcase_05 AC 38 ms
52,384 KB
testcase_06 AC 38 ms
52,620 KB
testcase_07 AC 38 ms
52,492 KB
testcase_08 AC 38 ms
52,100 KB
testcase_09 AC 39 ms
53,236 KB
testcase_10 AC 38 ms
52,016 KB
testcase_11 AC 49 ms
62,624 KB
testcase_12 AC 39 ms
54,032 KB
testcase_13 AC 84 ms
78,180 KB
testcase_14 AC 72 ms
73,720 KB
testcase_15 AC 113 ms
86,876 KB
testcase_16 AC 127 ms
93,008 KB
testcase_17 AC 823 ms
334,160 KB
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

h, w = map(int, input().split())
S = [list(input()) for _ in range(h)]

ans = 1
DP = [[0 for _ in range(w)] for _ in range(h)]
for i in range(h):
    for j in range(w):
        DP[i][j] = S[i][j] == '#'
for i in range(h - 1):
    for j in range(1, w):
        if DP[i + 1][j] == 1:
            DP[i + 1][j] = min(DP[i + 1][j - 1], DP[i][j], DP[i][j - 1]) + 1
            ans = max(ans, DP[i + 1][j])
print((ans + 1) // 2)
0