結果

問題 No.402 最も海から遠い場所
ユーザー pluto77pluto77
提出日時 2017-03-25 11:33:59
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 329 ms / 3,000 ms
コード長 278 bytes
コンパイル時間 1,035 ms
コンパイル使用メモリ 76,812 KB
実行使用メモリ 149,184 KB
最終ジャッジ日時 2024-07-06 06:01:05
合計ジャッジ時間 6,169 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
75,144 KB
testcase_01 AC 79 ms
75,136 KB
testcase_02 AC 101 ms
76,544 KB
testcase_03 AC 80 ms
75,136 KB
testcase_04 AC 79 ms
75,648 KB
testcase_05 AC 78 ms
75,648 KB
testcase_06 AC 82 ms
75,392 KB
testcase_07 AC 79 ms
75,836 KB
testcase_08 AC 77 ms
75,520 KB
testcase_09 AC 77 ms
75,520 KB
testcase_10 AC 76 ms
75,520 KB
testcase_11 AC 84 ms
76,708 KB
testcase_12 AC 78 ms
75,412 KB
testcase_13 AC 94 ms
77,740 KB
testcase_14 AC 99 ms
78,332 KB
testcase_15 AC 106 ms
79,872 KB
testcase_16 AC 109 ms
79,356 KB
testcase_17 AC 252 ms
112,560 KB
testcase_18 AC 329 ms
148,692 KB
testcase_19 AC 223 ms
149,140 KB
testcase_20 AC 311 ms
148,768 KB
testcase_21 AC 287 ms
149,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki_402

h,w=map(int,raw_input().split())
dp=[[0 for i in xrange(w+2)] for j in xrange(h+2)]
res=0
for i in xrange(1,h+1):
 s=raw_input()
 for j in xrange(1,w+1):
  if s[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
0