結果

問題 No.9 モンスターのレベル上げ
ユーザー gahougahou
提出日時 2016-11-11 17:27:54
言語 Python2
(2.7.18)
結果
TLE  
実行時間 -
コード長 493 bytes
コンパイル時間 41 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 14,208 KB
最終ジャッジ日時 2024-11-25 08:16:15
合計ジャッジ時間 68,055 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
13,860 KB
testcase_01 AC 11 ms
13,728 KB
testcase_02 TLE -
testcase_03 TLE -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 TLE -
testcase_10 AC 11 ms
6,816 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 WA -
testcase_17 TLE -
testcase_18 AC 4,639 ms
6,912 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
import copy
# data = LV * 3000 + battles
N=int(raw_input())
baseQ=[]
A=map(int,raw_input().split())
B=map(int,raw_input().split())
for i in xrange(N):
  heapq.heappush(baseQ,A[i]*3000)
minMaxBattle=10**8
for j in xrange(N):
  q=copy.deepcopy(baseQ)
  for k in xrange(N):
    h=heapq.heappop(q)
    h+=int(B[k]/2)*3000+1
    heapq.heappush(q,h)
  maxBattle=0
  for k in xrange(N):
    maxBattle=max(maxBattle,q[k]%3000)
  minMaxBattle=min(minMaxBattle,maxBattle)
print minMaxBattle
0