結果

問題 No.9 モンスターのレベル上げ
ユーザー TawaraTawara
提出日時 2016-07-27 00:27:02
言語 Python2
(2.7.18)
結果
AC  
実行時間 4,925 ms / 5,000 ms
コード長 362 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-23 23:41:08
合計ジャッジ時間 37,747 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
6,812 KB
testcase_01 AC 13 ms
6,940 KB
testcase_02 AC 3,755 ms
6,940 KB
testcase_03 AC 2,942 ms
6,940 KB
testcase_04 AC 1,567 ms
6,944 KB
testcase_05 AC 1,052 ms
6,940 KB
testcase_06 AC 371 ms
6,944 KB
testcase_07 AC 18 ms
6,940 KB
testcase_08 AC 496 ms
6,944 KB
testcase_09 AC 3,649 ms
6,944 KB
testcase_10 AC 12 ms
6,940 KB
testcase_11 AC 3,481 ms
6,944 KB
testcase_12 AC 4,925 ms
6,944 KB
testcase_13 AC 3,491 ms
6,940 KB
testcase_14 AC 3,660 ms
6,944 KB
testcase_15 AC 3,352 ms
6,940 KB
testcase_16 AC 72 ms
6,940 KB
testcase_17 AC 2,161 ms
6,940 KB
testcase_18 AC 1,807 ms
6,940 KB
testcase_19 AC 46 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq as hpq
def solve():
	Q = []
	N = int(raw_input())
	ans = N+1
	Q = [(a,0) for a in map(int,raw_input().split())]
	hpq.heapify(Q)
	B = map(int,raw_input().split())
	for i in xrange(N):
		q = Q[:]
		for j in xrange(N):
			lv,cnt = hpq.heappop(q)
			hpq.heappush(q,(lv+B[(i+j)%N]/2,cnt+1))
		ans = min(ans,max(q,key=lambda x:x[1])[1])
	print ans
solve()
0