結果

問題 No.9 モンスターのレベル上げ
ユーザー tookunn_1213tookunn_1213
提出日時 2016-08-26 22:12:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 380 bytes
コンパイル時間 78 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-06-23 23:43:54
合計ジャッジ時間 43,614 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,880 KB
testcase_01 AC 33 ms
10,752 KB
testcase_02 AC 4,432 ms
11,136 KB
testcase_03 AC 3,434 ms
11,008 KB
testcase_04 AC 1,899 ms
11,008 KB
testcase_05 AC 1,245 ms
11,136 KB
testcase_06 AC 465 ms
10,880 KB
testcase_07 AC 38 ms
10,880 KB
testcase_08 AC 607 ms
11,008 KB
testcase_09 AC 4,277 ms
11,136 KB
testcase_10 AC 31 ms
10,752 KB
testcase_11 AC 4,105 ms
11,264 KB
testcase_12 TLE -
testcase_13 AC 4,011 ms
11,008 KB
testcase_14 AC 4,265 ms
11,136 KB
testcase_15 AC 3,897 ms
11,136 KB
testcase_16 AC 102 ms
10,752 KB
testcase_17 AC 2,529 ms
11,008 KB
testcase_18 AC 2,130 ms
11,136 KB
testcase_19 AC 70 ms
10,880 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