結果

問題 No.9 モンスターのレベル上げ
ユーザー OKCH3COOHOKCH3COOH
提出日時 2019-10-23 22:17:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 845 ms / 5,000 ms
コード長 431 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 81,964 KB
実行使用メモリ 87,320 KB
最終ジャッジ日時 2024-07-07 05:11:59
合計ジャッジ時間 9,253 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,096 KB
testcase_01 AC 32 ms
52,096 KB
testcase_02 AC 845 ms
86,704 KB
testcase_03 AC 726 ms
84,196 KB
testcase_04 AC 438 ms
79,600 KB
testcase_05 AC 313 ms
78,036 KB
testcase_06 AC 177 ms
76,744 KB
testcase_07 AC 75 ms
76,032 KB
testcase_08 AC 193 ms
76,956 KB
testcase_09 AC 840 ms
87,320 KB
testcase_10 AC 32 ms
52,096 KB
testcase_11 AC 655 ms
82,876 KB
testcase_12 AC 546 ms
80,416 KB
testcase_13 AC 585 ms
82,476 KB
testcase_14 AC 832 ms
87,100 KB
testcase_15 AC 757 ms
85,404 KB
testcase_16 AC 96 ms
76,552 KB
testcase_17 AC 516 ms
81,836 KB
testcase_18 AC 445 ms
80,724 KB
testcase_19 AC 86 ms
76,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heapify, heappop, heappush

N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))

myMonster = [(a, 0) for a in A]
heapify(myMonster)
ans = float('inf')

for start in range(N):
    A = myMonster[:]
    for b in B[start:] + B[:start]:
        now, time = heappop(A)
        now += b // 2
        heappush(A, (now, time + 1))
    ans = min(ans, max([a for _, a in A]))

print(ans)
0