結果

問題 No.9 モンスターのレベル上げ
ユーザー zimphazimpha
提出日時 2017-12-07 01:29:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,495 ms / 5,000 ms
コード長 396 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 94,916 KB
最終ジャッジ日時 2024-06-24 00:18:00
合計ジャッジ時間 15,225 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
52,748 KB
testcase_01 AC 49 ms
53,096 KB
testcase_02 AC 1,318 ms
94,916 KB
testcase_03 AC 1,245 ms
89,436 KB
testcase_04 AC 725 ms
82,364 KB
testcase_05 AC 545 ms
79,984 KB
testcase_06 AC 297 ms
78,052 KB
testcase_07 AC 111 ms
76,988 KB
testcase_08 AC 336 ms
78,036 KB
testcase_09 AC 1,468 ms
94,288 KB
testcase_10 AC 45 ms
53,812 KB
testcase_11 AC 936 ms
86,964 KB
testcase_12 AC 1,152 ms
86,104 KB
testcase_13 AC 1,012 ms
85,684 KB
testcase_14 AC 1,495 ms
94,476 KB
testcase_15 AC 1,360 ms
91,824 KB
testcase_16 AC 145 ms
76,672 KB
testcase_17 AC 947 ms
85,392 KB
testcase_18 AC 805 ms
83,056 KB
testcase_19 AC 121 ms
76,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *

n = int(input())
a = list(map(int, input().split()))
b = list(map(int, input().split()))

ret = n
for i in range(n):
    pq = [(x, 0) for x in a]
    heapify(pq)
    mx = 0
    for j in range(n):
        e = b[(i + j) % n]
        u = heappop(pq)
        u = (u[0] + e // 2, u[1] + 1)
        heappush(pq, u)
    mx = max([e[1] for e in pq])
    ret = min(ret, mx)
print(ret)
0