結果

問題 No.107 モンスター
ユーザー gigurururugigurururu
提出日時 2014-12-19 01:45:33
言語 Ruby
(3.4.1)
結果
AC  
実行時間 635 ms / 5,000 ms
コード長 278 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 14,080 KB
最終ジャッジ日時 2024-12-26 14:40:19
合計ジャッジ時間 7,535 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
12,032 KB
testcase_01 AC 114 ms
12,032 KB
testcase_02 AC 116 ms
12,160 KB
testcase_03 AC 109 ms
12,032 KB
testcase_04 AC 108 ms
11,904 KB
testcase_05 AC 112 ms
11,904 KB
testcase_06 AC 110 ms
12,160 KB
testcase_07 AC 110 ms
11,904 KB
testcase_08 AC 107 ms
12,160 KB
testcase_09 AC 104 ms
12,032 KB
testcase_10 AC 112 ms
12,160 KB
testcase_11 AC 113 ms
12,032 KB
testcase_12 AC 108 ms
12,032 KB
testcase_13 AC 339 ms
13,568 KB
testcase_14 AC 622 ms
13,952 KB
testcase_15 AC 631 ms
13,824 KB
testcase_16 AC 112 ms
12,160 KB
testcase_17 AC 168 ms
13,568 KB
testcase_18 AC 154 ms
13,440 KB
testcase_19 AC 158 ms
13,440 KB
testcase_20 AC 410 ms
13,312 KB
testcase_21 AC 317 ms
13,568 KB
testcase_22 AC 521 ms
13,696 KB
testcase_23 AC 635 ms
14,080 KB
testcase_24 AC 392 ms
13,440 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N=gets.to_i
D=gets.split.map &:to_i
h={[]=>100}
N.times{
  t={}
  h.each{|k,v|
    ([*0...N]-k).each{|i|
      done=(k+[i]).sort
      hp=[[v+D[i],0].max,100+100*done.count{|j|D[j]<0}].min
      next if hp<=0
      t[done]=[t[done]||0,hp].max
    }
  }
  h=t
}
p h.values.max||0
0