結果

問題 No.9 モンスターのレベル上げ
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-10-20 14:34:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,904 ms / 5,000 ms
コード長 363 bytes
コンパイル時間 500 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 102,640 KB
最終ジャッジ日時 2024-10-20 14:35:14
合計ジャッジ時間 33,072 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,008 KB
testcase_01 AC 40 ms
53,776 KB
testcase_02 AC 3,904 ms
102,640 KB
testcase_03 AC 3,056 ms
95,928 KB
testcase_04 AC 1,667 ms
84,216 KB
testcase_05 AC 1,138 ms
80,448 KB
testcase_06 AC 484 ms
77,328 KB
testcase_07 AC 93 ms
76,336 KB
testcase_08 AC 561 ms
77,852 KB
testcase_09 AC 3,754 ms
100,472 KB
testcase_10 AC 38 ms
53,684 KB
testcase_11 AC 2,092 ms
92,496 KB
testcase_12 AC 2,032 ms
92,108 KB
testcase_13 AC 994 ms
87,100 KB
testcase_14 AC 3,771 ms
101,468 KB
testcase_15 AC 3,370 ms
98,340 KB
testcase_16 AC 172 ms
76,152 KB
testcase_17 AC 2,209 ms
88,864 KB
testcase_18 AC 1,884 ms
85,388 KB
testcase_19 AC 116 ms
76,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
b=list(map(int,input().split()))

from heapq import heappush,heappop

def solve(a,b):
  q=[(v,0) for v in a]
  q.sort()
  for u in b:
    v,c=heappop(q)
    v+=u//2
    c+=1
    heappush(q,(v,c))
  q=list(q)
  return max(c for v,c in q)

ans=10**10
for i in range(n):
  ans=min(ans,solve(a,b[i:]+b[:i]))

print(ans)
0