結果

問題 No.9 モンスターのレベル上げ
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-04-12 21:41:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,191 ms / 5,000 ms
コード長 394 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 81,868 KB
実行使用メモリ 85,728 KB
最終ジャッジ日時 2024-06-28 17:20:39
合計ジャッジ時間 12,238 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,608 KB
testcase_01 AC 46 ms
52,736 KB
testcase_02 AC 1,113 ms
85,264 KB
testcase_03 AC 968 ms
83,288 KB
testcase_04 AC 583 ms
79,452 KB
testcase_05 AC 429 ms
78,376 KB
testcase_06 AC 241 ms
76,976 KB
testcase_07 AC 99 ms
76,288 KB
testcase_08 AC 277 ms
77,412 KB
testcase_09 AC 1,117 ms
85,276 KB
testcase_10 AC 41 ms
52,736 KB
testcase_11 AC 836 ms
81,492 KB
testcase_12 AC 787 ms
78,260 KB
testcase_13 AC 773 ms
81,288 KB
testcase_14 AC 1,191 ms
85,728 KB
testcase_15 AC 1,058 ms
83,968 KB
testcase_16 AC 124 ms
76,584 KB
testcase_17 AC 714 ms
80,748 KB
testcase_18 AC 649 ms
80,060 KB
testcase_19 AC 109 ms
76,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush, heappop, heapify

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

ans = 10**10
base = [(a,0) for a in A]
heapify(base)
for i in range(n):

    h = base.copy()
    for j in range(n):
        a,num = heappop(h)
        a += B[(i+j)%n]//2
        heappush(h, (a,num+1))
    m = max(i for _,i in h)
    ans = min(ans,m)
print(ans)
0