結果

問題 No.9 モンスターのレベル上げ
ユーザー pluto77pluto77
提出日時 2016-09-23 08:40:42
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 1,023 ms / 5,000 ms
コード長 308 bytes
コンパイル時間 133 ms
コンパイル使用メモリ 76,584 KB
実行使用メモリ 84,032 KB
最終ジャッジ日時 2024-06-23 23:44:47
合計ジャッジ時間 11,933 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
75,776 KB
testcase_01 AC 85 ms
75,900 KB
testcase_02 AC 1,023 ms
84,032 KB
testcase_03 AC 849 ms
82,496 KB
testcase_04 AC 529 ms
80,480 KB
testcase_05 AC 407 ms
79,852 KB
testcase_06 AC 229 ms
78,688 KB
testcase_07 AC 116 ms
78,336 KB
testcase_08 AC 264 ms
79,056 KB
testcase_09 AC 1,020 ms
83,652 KB
testcase_10 AC 85 ms
75,392 KB
testcase_11 AC 841 ms
83,880 KB
testcase_12 AC 922 ms
80,564 KB
testcase_13 AC 755 ms
83,324 KB
testcase_14 AC 1,023 ms
83,716 KB
testcase_15 AC 981 ms
82,892 KB
testcase_16 AC 144 ms
78,720 KB
testcase_17 AC 685 ms
81,388 KB
testcase_18 AC 596 ms
81,512 KB
testcase_19 AC 135 ms
78,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki_9
import heapq

n=int(raw_input())
a=[(int(i),0) for i in raw_input().split()]
b=map(int,raw_input().split())
heapq.heapify(a)

res=n
for i in xrange(n):
 aa=a[:]
 for j in range(i,i+n):
  r=j%n
  x,y=aa[0]
  heapq.heapreplace(aa,(x+b[r]/2,y+1))
 temp=max(z for x,z in aa)
 res=min(res,temp)
print res
0