結果

問題 No.9 モンスターのレベル上げ
ユーザー gigurururugigurururu
提出日時 2014-12-30 15:30:01
言語 Ruby
(3.3.0)
結果
AC  
実行時間 4,470 ms / 5,000 ms
コード長 265 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,672 KB
最終ジャッジ日時 2024-06-23 22:09:52
合計ジャッジ時間 43,765 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
12,288 KB
testcase_01 AC 87 ms
12,032 KB
testcase_02 AC 4,470 ms
12,672 KB
testcase_03 AC 3,385 ms
12,416 KB
testcase_04 AC 1,764 ms
12,672 KB
testcase_05 AC 1,185 ms
12,416 KB
testcase_06 AC 443 ms
12,416 KB
testcase_07 AC 98 ms
12,544 KB
testcase_08 AC 568 ms
12,416 KB
testcase_09 AC 4,300 ms
12,544 KB
testcase_10 AC 91 ms
12,416 KB
testcase_11 AC 4,288 ms
12,416 KB
testcase_12 AC 4,375 ms
12,544 KB
testcase_13 AC 4,423 ms
12,416 KB
testcase_14 AC 4,365 ms
12,416 KB
testcase_15 AC 3,895 ms
12,672 KB
testcase_16 AC 144 ms
12,416 KB
testcase_17 AC 2,448 ms
12,416 KB
testcase_18 AC 2,012 ms
12,416 KB
testcase_19 AC 124 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n=gets.to_i
mod=2000
a=gets.split.map{|i|i.to_i*mod}.sort+[1e9]
b=gets.split.map{|i|i.to_i/2}
p (1..n).map{|i|
  pq=a.dup
  b.rotate(i).each{|e|
    l=pq.shift
    up=l+e*mod+1
    pq.insert((0..n-1).bsearch{|x|pq[x]>=up},up)
  }
  pq[0..-2].map{|x|x%mod}.max
}.min
0