結果

問題 No.9 モンスターのレベル上げ
ユーザー 👑 rin204rin204
提出日時 2022-06-12 15:51:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,173 ms / 5,000 ms
コード長 419 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 89,040 KB
最終ジャッジ日時 2024-09-23 04:04:25
合計ジャッジ時間 12,477 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,688 KB
testcase_01 AC 40 ms
52,668 KB
testcase_02 AC 1,173 ms
89,040 KB
testcase_03 AC 1,014 ms
85,840 KB
testcase_04 AC 606 ms
80,704 KB
testcase_05 AC 465 ms
79,440 KB
testcase_06 AC 288 ms
77,724 KB
testcase_07 AC 106 ms
76,292 KB
testcase_08 AC 303 ms
77,616 KB
testcase_09 AC 1,121 ms
88,596 KB
testcase_10 AC 39 ms
53,812 KB
testcase_11 AC 845 ms
84,104 KB
testcase_12 AC 771 ms
83,872 KB
testcase_13 AC 776 ms
83,372 KB
testcase_14 AC 1,137 ms
88,936 KB
testcase_15 AC 1,028 ms
87,296 KB
testcase_16 AC 145 ms
76,752 KB
testcase_17 AC 759 ms
83,164 KB
testcase_18 AC 641 ms
81,064 KB
testcase_19 AC 124 ms
76,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *

n = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
A.sort()
ans = 1 << 30
for i in range(n):
    hq = [(a, 0) for a in A]
    max_ = 0
    for j in range(i, i + n):
        if j >= n:
            j -= n
        a, t = heappop(hq)
        t += 1
        a += B[j] // 2
        max_ = max(max_, t)
        heappush(hq, (a, t))
    ans = min(ans, max_)
print(ans)
0