結果

問題 No.9 モンスターのレベル上げ
ユーザー hiro1729hiro1729
提出日時 2024-08-27 18:26:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,473 ms / 5,000 ms
コード長 364 bytes
コンパイル時間 524 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 94,924 KB
最終ジャッジ日時 2024-08-27 18:27:09
合計ジャッジ時間 15,382 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,760 KB
testcase_01 AC 39 ms
52,988 KB
testcase_02 AC 1,451 ms
94,624 KB
testcase_03 AC 1,158 ms
89,168 KB
testcase_04 AC 685 ms
81,524 KB
testcase_05 AC 527 ms
80,116 KB
testcase_06 AC 278 ms
77,608 KB
testcase_07 AC 107 ms
76,572 KB
testcase_08 AC 334 ms
78,024 KB
testcase_09 AC 1,473 ms
94,924 KB
testcase_10 AC 38 ms
54,060 KB
testcase_11 AC 1,073 ms
87,176 KB
testcase_12 AC 1,155 ms
86,336 KB
testcase_13 AC 987 ms
87,080 KB
testcase_14 AC 1,472 ms
94,228 KB
testcase_15 AC 1,307 ms
91,284 KB
testcase_16 AC 136 ms
76,580 KB
testcase_17 AC 877 ms
85,264 KB
testcase_18 AC 794 ms
82,824 KB
testcase_19 AC 121 ms
76,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *

N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))

ans = 10 ** 9

for i in range(N):
	hq = []
	for j in A:
		hq.append((j, 0))
	heapify(hq)
	for k in range(N):
		c = B[(i + k) % N]
		ns, cnt = heappop(hq)
		heappush(hq, (ns + c // 2, cnt + 1))
	ans = min(ans, max(hq[i][1] for i in range(N)))

print(ans)
0