結果

問題 No.402 最も海から遠い場所
ユーザー lloyzlloyz
提出日時 2023-01-26 20:21:19
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 446 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 434,540 KB
最終ジャッジ日時 2024-06-27 11:49:28
合計ジャッジ時間 6,708 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,960 KB
testcase_01 AC 37 ms
52,140 KB
testcase_02 AC 47 ms
61,392 KB
testcase_03 AC 37 ms
52,404 KB
testcase_04 AC 37 ms
53,376 KB
testcase_05 AC 38 ms
53,752 KB
testcase_06 AC 37 ms
53,116 KB
testcase_07 AC 38 ms
52,464 KB
testcase_08 AC 39 ms
52,344 KB
testcase_09 AC 39 ms
52,332 KB
testcase_10 AC 37 ms
52,708 KB
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 AC 70 ms
71,800 KB
testcase_15 AC 107 ms
85,020 KB
testcase_16 AC 117 ms
89,052 KB
testcase_17 RE -
testcase_18 AC 1,066 ms
434,540 KB
testcase_19 AC 893 ms
432,156 KB
testcase_20 AC 1,031 ms
433,604 KB
testcase_21 AC 1,016 ms
432,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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