結果

問題 No.402 最も海から遠い場所
ユーザー cielciel
提出日時 2016-07-25 02:29:45
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 165 bytes
コンパイル時間 124 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 176,768 KB
最終ジャッジ日時 2024-04-24 08:47:37
合計ジャッジ時間 9,688 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 93 ms
12,288 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 89 ms
12,160 KB
testcase_07 AC 91 ms
12,160 KB
testcase_08 AC 87 ms
12,160 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 TLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

h,w=gets.split.map &:to_i;*S=$<.map{|e|e.bytes.map{|b|1-b/46}}
1.upto(h-1){|y|1.upto(w-1){|x|S[y][x]+=[S[y-1][x-1],S[y][x-1],S[y-1][x]].min*S[y][x]}}
p S.flatten.max
0