結果
問題 | No.402 最も海から遠い場所 |
ユーザー | はむ吉🐹 |
提出日時 | 2016-07-26 13:58:59 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 1,973 ms / 3,000 ms |
コード長 | 730 bytes |
コンパイル時間 | 241 ms |
コンパイル使用メモリ | 82,256 KB |
実行使用メモリ | 165,988 KB |
最終ジャッジ日時 | 2024-11-06 16:58:04 |
合計ジャッジ時間 | 8,671 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
52,852 KB |
testcase_01 | AC | 44 ms
53,664 KB |
testcase_02 | AC | 55 ms
64,776 KB |
testcase_03 | AC | 39 ms
53,532 KB |
testcase_04 | AC | 40 ms
53,956 KB |
testcase_05 | AC | 39 ms
53,380 KB |
testcase_06 | AC | 40 ms
52,564 KB |
testcase_07 | AC | 39 ms
52,252 KB |
testcase_08 | AC | 40 ms
53,676 KB |
testcase_09 | AC | 40 ms
53,132 KB |
testcase_10 | AC | 40 ms
53,568 KB |
testcase_11 | AC | 52 ms
63,604 KB |
testcase_12 | AC | 41 ms
54,040 KB |
testcase_13 | AC | 77 ms
76,636 KB |
testcase_14 | AC | 80 ms
76,280 KB |
testcase_15 | AC | 117 ms
78,836 KB |
testcase_16 | AC | 155 ms
79,660 KB |
testcase_17 | AC | 726 ms
116,032 KB |
testcase_18 | AC | 1,973 ms
165,932 KB |
testcase_19 | AC | 581 ms
165,504 KB |
testcase_20 | AC | 1,942 ms
165,708 KB |
testcase_21 | AC | 1,119 ms
165,988 KB |
ソースコード
#!/usr/bin/env pypy3 import array import itertools def compute(height, width, is_sea): square_size = 0 dp = [array.array("L", (0 for _ in range(width + 2))) for _ in range(height + 2)] for r, c in itertools.product(range(1, height + 1), range(1, width + 1)): if not is_sea[r - 1][c - 1]: dp[r][c] = min(dp[r - 1][c - 1], dp[r - 1][c], dp[r][c - 1]) + 1 square_size = max(square_size, dp[r][c]) return (square_size + 1) // 2 def main(): height, width = map(int, input().split()) is_sea = [array.array("B", map(lambda x: x == ".", input())) for _ in range(height)] print(compute(height, width, is_sea)) if __name__ == '__main__': main()