結果
問題 | No.402 最も海から遠い場所 |
ユーザー | AreTrash |
提出日時 | 2016-07-22 00:20:04 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 331 bytes |
コンパイル時間 | 197 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 52,224 KB |
最終ジャッジ日時 | 2024-11-06 11:59:22 |
合計ジャッジ時間 | 6,865 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
17,700 KB |
testcase_01 | AC | 30 ms
10,752 KB |
testcase_02 | AC | 32 ms
10,752 KB |
testcase_03 | AC | 30 ms
10,752 KB |
testcase_04 | AC | 30 ms
10,880 KB |
testcase_05 | AC | 30 ms
10,880 KB |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | AC | 30 ms
10,752 KB |
testcase_09 | AC | 30 ms
10,752 KB |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | TLE | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
ソースコード
H, W = map(int, input().split()) S = [input() for i in range(H)] dp = [[0 for i in range(H + 1)] for j in range(W + 1)] res = 0 for i in range(1, H + 1): for j in range(1, W + 1): if(S[i - 1][j - 1] == "#"): dp[i][j] = min(dp[i - 1][j - 1], dp[i - 1][j], dp[i][j - 1]) + 1 res = max(res, dp[i][j]) print((res + 1) // 2)