結果

問題 No.9 モンスターのレベル上げ
ユーザー TawaraTawara
提出日時 2016-07-27 00:02:26
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 3,265 ms / 5,000 ms
コード長 402 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 76,872 KB
実行使用メモリ 237,728 KB
最終ジャッジ日時 2024-06-23 23:38:29
合計ジャッジ時間 33,227 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
76,800 KB
testcase_01 AC 93 ms
76,800 KB
testcase_02 AC 3,265 ms
208,544 KB
testcase_03 AC 2,618 ms
162,240 KB
testcase_04 AC 1,513 ms
116,852 KB
testcase_05 AC 1,078 ms
100,100 KB
testcase_06 AC 542 ms
85,396 KB
testcase_07 AC 177 ms
80,512 KB
testcase_08 AC 633 ms
88,476 KB
testcase_09 AC 3,186 ms
206,860 KB
testcase_10 AC 92 ms
76,736 KB
testcase_11 AC 2,925 ms
204,572 KB
testcase_12 AC 2,876 ms
187,676 KB
testcase_13 AC 2,428 ms
147,416 KB
testcase_14 AC 3,249 ms
201,852 KB
testcase_15 AC 3,162 ms
237,728 KB
testcase_16 AC 257 ms
80,760 KB
testcase_17 AC 1,939 ms
133,600 KB
testcase_18 AC 1,706 ms
125,468 KB
testcase_19 AC 218 ms
80,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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