結果

問題 No.402 最も海から遠い場所
ユーザー cielciel
提出日時 2016-07-25 02:41:49
言語 PyPy2
(7.3.15)
結果
WA  
実行時間 -
コード長 231 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 77,120 KB
実行使用メモリ 148,024 KB
最終ジャッジ日時 2024-11-06 16:13:34
合計ジャッジ時間 4,782 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
75,816 KB
testcase_01 AC 72 ms
75,668 KB
testcase_02 AC 82 ms
77,972 KB
testcase_03 WA -
testcase_04 AC 75 ms
75,708 KB
testcase_05 AC 76 ms
75,820 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 74 ms
75,420 KB
testcase_09 AC 74 ms
75,560 KB
testcase_10 AC 77 ms
75,704 KB
testcase_11 AC 84 ms
77,832 KB
testcase_12 AC 75 ms
75,576 KB
testcase_13 AC 89 ms
77,940 KB
testcase_14 AC 90 ms
78,372 KB
testcase_15 AC 104 ms
78,628 KB
testcase_16 AC 105 ms
80,400 KB
testcase_17 AC 293 ms
112,256 KB
testcase_18 AC 403 ms
146,876 KB
testcase_19 AC 362 ms
148,024 KB
testcase_20 AC 324 ms
142,748 KB
testcase_21 AC 442 ms
147,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
h,w=map(int,raw_input().split());r=0
S=[[1-ord(c)/46 for c in e.strip()] for e in sys.stdin]
for y in range(1,h):
 for x in range(1,w):
  S[y][x]+=min(S[y-1][x-1],S[y][x-1],S[y-1][x])*S[y][x];r=max(r,S[y][x])
print -~r/2
0