結果

問題 No.9 モンスターのレベル上げ
ユーザー noriocnorioc
提出日時 2024-08-28 03:40:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,334 ms / 5,000 ms
コード長 452 bytes
コンパイル時間 529 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 91,376 KB
最終ジャッジ日時 2024-08-28 03:40:36
合計ジャッジ時間 14,094 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,224 KB
testcase_01 AC 38 ms
54,400 KB
testcase_02 AC 1,334 ms
91,376 KB
testcase_03 AC 1,131 ms
87,620 KB
testcase_04 AC 653 ms
80,588 KB
testcase_05 AC 436 ms
78,816 KB
testcase_06 AC 278 ms
77,268 KB
testcase_07 AC 93 ms
76,376 KB
testcase_08 AC 285 ms
77,580 KB
testcase_09 AC 1,268 ms
90,960 KB
testcase_10 AC 36 ms
53,288 KB
testcase_11 AC 1,046 ms
89,440 KB
testcase_12 AC 1,024 ms
89,988 KB
testcase_13 AC 817 ms
85,008 KB
testcase_14 AC 1,275 ms
90,892 KB
testcase_15 AC 1,206 ms
88,788 KB
testcase_16 AC 122 ms
76,324 KB
testcase_17 AC 813 ms
83,872 KB
testcase_18 AC 670 ms
81,752 KB
testcase_19 AC 117 ms
76,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush, heappop

INF = 1 << 60
N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))


def solve(p: int):
    q = []  # (レベル, 戦闘回数)
    for a in A:
        heappush(q, (a, 0))

    for b in B[p:] + B[:p]:
        lv, cnt = heappop(q)
        heappush(q, (lv+(b//2), cnt+1))

    return max(cnt for _, cnt in q)


ans = INF
for i in range(N):
    ans = min(ans, solve(i))

print(ans)
0