結果

問題 No.9 モンスターのレベル上げ
ユーザー letrangerjpletrangerjp
提出日時 2017-05-14 15:54:21
言語 Ruby
(3.3.0)
結果
AC  
実行時間 3,894 ms / 5,000 ms
コード長 450 bytes
コンパイル時間 39 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-06-24 00:01:44
合計ジャッジ時間 37,039 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
12,288 KB
testcase_01 AC 89 ms
12,160 KB
testcase_02 AC 3,839 ms
12,544 KB
testcase_03 AC 2,904 ms
12,416 KB
testcase_04 AC 1,538 ms
12,416 KB
testcase_05 AC 1,004 ms
12,544 KB
testcase_06 AC 380 ms
12,288 KB
testcase_07 AC 94 ms
12,416 KB
testcase_08 AC 490 ms
12,544 KB
testcase_09 AC 3,733 ms
12,672 KB
testcase_10 AC 88 ms
12,160 KB
testcase_11 AC 3,013 ms
12,800 KB
testcase_12 AC 3,894 ms
12,544 KB
testcase_13 AC 3,759 ms
12,672 KB
testcase_14 AC 3,720 ms
12,416 KB
testcase_15 AC 3,347 ms
12,672 KB
testcase_16 AC 134 ms
12,544 KB
testcase_17 AC 2,079 ms
12,544 KB
testcase_18 AC 1,750 ms
12,288 KB
testcase_19 AC 117 ms
12,416 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def f(a, b)
  _party = a.map{|v| v * MOD}.sort
  troop = b.map{|v|v/2}
  troop.size.times.map{
    party = _party.dup
    troop.each{|elv|
      lv_cnt = party.shift + elv * MOD + 1
      nth = party.bsearch_index{|v| v >= lv_cnt} || party.size
      party.insert(nth, lv_cnt)
    }
    troop.rotate!
    party.map{|v| v % MOD}.max
  }.min
end

N = gets.to_i
A = gets.split.take(N).map(&:to_i)
B = gets.split.take(N).map(&:to_i)
MOD = 2000
p f(A, B)
0