結果

問題 No.9 モンスターのレベル上げ
ユーザー tookunn_1213tookunn_1213
提出日時 2016-08-26 22:13:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,377 ms / 5,000 ms
コード長 380 bytes
コンパイル時間 683 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 92,360 KB
最終ジャッジ日時 2024-06-23 23:42:41
合計ジャッジ時間 15,098 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,588 KB
testcase_01 AC 44 ms
52,652 KB
testcase_02 AC 1,365 ms
92,360 KB
testcase_03 AC 1,138 ms
87,212 KB
testcase_04 AC 684 ms
81,052 KB
testcase_05 AC 501 ms
78,920 KB
testcase_06 AC 281 ms
77,468 KB
testcase_07 AC 101 ms
76,580 KB
testcase_08 AC 316 ms
77,756 KB
testcase_09 AC 1,354 ms
90,996 KB
testcase_10 AC 40 ms
53,268 KB
testcase_11 AC 982 ms
87,160 KB
testcase_12 AC 1,050 ms
85,796 KB
testcase_13 AC 1,057 ms
86,188 KB
testcase_14 AC 1,377 ms
92,292 KB
testcase_15 AC 1,259 ms
90,992 KB
testcase_16 AC 141 ms
76,816 KB
testcase_17 AC 860 ms
83,492 KB
testcase_18 AC 739 ms
81,844 KB
testcase_19 AC 119 ms
76,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
N = int(input())
A = [int(i) for i in input().split()]
B = [int(i) for i in input().split()]
ans = 10 ** 9 + 7
for i in range(N):
	pq = [(j,0) for j in A]
	heapq.heapify(pq)
	battle = 0
	for j in range(N):
		p = heapq.heappop(pq)
		next = (p[0] + (B[(i + j) % N]//2),p[1] + 1)
		battle = max(battle,next[1])
		heapq.heappush(pq,next)
	ans = min(ans,battle)
print(ans)
0