結果

問題 No.402 最も海から遠い場所
ユーザー lloyzlloyz
提出日時 2023-01-26 20:22:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,169 ms / 3,000 ms
コード長 446 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 434,816 KB
最終ジャッジ日時 2024-06-27 11:49:56
合計ジャッジ時間 7,650 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 50 ms
60,928 KB
testcase_03 AC 39 ms
51,584 KB
testcase_04 AC 39 ms
51,968 KB
testcase_05 AC 40 ms
51,840 KB
testcase_06 AC 40 ms
52,224 KB
testcase_07 AC 41 ms
52,224 KB
testcase_08 AC 41 ms
51,968 KB
testcase_09 AC 40 ms
51,840 KB
testcase_10 AC 41 ms
51,712 KB
testcase_11 AC 53 ms
61,440 KB
testcase_12 AC 41 ms
52,224 KB
testcase_13 AC 86 ms
74,496 KB
testcase_14 AC 80 ms
70,528 KB
testcase_15 AC 117 ms
85,504 KB
testcase_16 AC 125 ms
89,600 KB
testcase_17 AC 602 ms
248,448 KB
testcase_18 AC 1,169 ms
434,816 KB
testcase_19 AC 990 ms
432,512 KB
testcase_20 AC 1,087 ms
434,048 KB
testcase_21 AC 1,050 ms
433,408 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(w)]
    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