結果

問題 No.9 モンスターのレベル上げ
ユーザー TawaraTawara
提出日時 2016-07-27 00:30:46
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 1,210 ms / 5,000 ms
コード長 354 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 76,964 KB
実行使用メモリ 90,012 KB
最終ジャッジ日時 2024-06-23 23:39:59
合計ジャッジ時間 13,465 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
75,548 KB
testcase_01 AC 78 ms
75,808 KB
testcase_02 AC 1,150 ms
89,216 KB
testcase_03 AC 944 ms
85,768 KB
testcase_04 AC 676 ms
82,312 KB
testcase_05 AC 439 ms
81,028 KB
testcase_06 AC 268 ms
79,156 KB
testcase_07 AC 127 ms
79,020 KB
testcase_08 AC 287 ms
79,400 KB
testcase_09 AC 1,210 ms
90,012 KB
testcase_10 AC 89 ms
75,676 KB
testcase_11 AC 889 ms
83,688 KB
testcase_12 AC 931 ms
80,536 KB
testcase_13 AC 750 ms
82,512 KB
testcase_14 AC 1,107 ms
89,052 KB
testcase_15 AC 1,031 ms
88,264 KB
testcase_16 AC 156 ms
78,744 KB
testcase_17 AC 708 ms
83,760 KB
testcase_18 AC 623 ms
82,708 KB
testcase_19 AC 140 ms
78,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq as hpq
def solve():
	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