結果

問題 No.402 最も海から遠い場所
ユーザー はむ吉🐹はむ吉🐹
提出日時 2016-07-26 14:03:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,039 ms / 3,000 ms
コード長 615 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 158,596 KB
最終ジャッジ日時 2024-11-06 16:58:12
合計ジャッジ時間 8,316 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,196 KB
testcase_01 AC 39 ms
53,460 KB
testcase_02 AC 50 ms
63,140 KB
testcase_03 AC 39 ms
52,460 KB
testcase_04 AC 40 ms
52,592 KB
testcase_05 AC 39 ms
53,336 KB
testcase_06 AC 38 ms
53,460 KB
testcase_07 AC 38 ms
52,872 KB
testcase_08 AC 38 ms
53,848 KB
testcase_09 AC 38 ms
54,284 KB
testcase_10 AC 39 ms
53,216 KB
testcase_11 AC 48 ms
62,144 KB
testcase_12 AC 40 ms
53,608 KB
testcase_13 AC 69 ms
76,340 KB
testcase_14 AC 79 ms
76,692 KB
testcase_15 AC 101 ms
78,848 KB
testcase_16 AC 147 ms
79,968 KB
testcase_17 AC 536 ms
111,480 KB
testcase_18 AC 2,039 ms
158,596 KB
testcase_19 AC 312 ms
155,716 KB
testcase_20 AC 2,015 ms
158,500 KB
testcase_21 AC 874 ms
156,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env pypy3

import array
import itertools


def main():
    height, width = map(int, input().split())
    square_size = 0
    dp = [array.array("L", (0 for _ in range(width + 2)))
          for _ in range(height + 2)]
    for r in range(1, height + 1):
        row = input()
        for c in range(1, width + 1):
            if row[c - 1] == "#":
                dp[r][c] = min(dp[r - 1][c - 1], dp[r - 1][c], dp[r][c - 1])
                dp[r][c] += 1
                square_size = max(square_size, dp[r][c])
    answer = (square_size + 1) // 2
    print(answer)


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