結果

問題 No.402 最も海から遠い場所
ユーザー cielciel
提出日時 2016-07-25 02:30:45
言語 Ruby
(3.3.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 169 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 104,320 KB
最終ジャッジ日時 2024-04-24 08:48:20
合計ジャッジ時間 10,000 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
17,664 KB
testcase_01 AC 91 ms
12,288 KB
testcase_02 AC 95 ms
12,160 KB
testcase_03 AC 90 ms
12,160 KB
testcase_04 AC 90 ms
12,160 KB
testcase_05 AC 89 ms
12,160 KB
testcase_06 AC 90 ms
12,288 KB
testcase_07 AC 89 ms
12,032 KB
testcase_08 AC 91 ms
12,032 KB
testcase_09 AC 97 ms
12,160 KB
testcase_10 AC 92 ms
12,160 KB
testcase_11 AC 91 ms
12,160 KB
testcase_12 AC 89 ms
12,160 KB
testcase_13 AC 111 ms
12,800 KB
testcase_14 AC 97 ms
12,544 KB
testcase_15 AC 196 ms
19,200 KB
testcase_16 AC 249 ms
22,144 KB
testcase_17 AC 2,131 ms
93,184 KB
testcase_18 TLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:3: warning: ambiguous first argument; put parentheses or a space even after `-' operator
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/2
0