結果

問題 No.9 モンスターのレベル上げ
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-04-12 21:40:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,177 ms / 5,000 ms
コード長 395 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 88,496 KB
最終ジャッジ日時 2024-06-28 17:19:59
合計ジャッジ時間 12,022 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,676 KB
testcase_01 AC 40 ms
52,960 KB
testcase_02 AC 1,107 ms
87,620 KB
testcase_03 AC 963 ms
85,012 KB
testcase_04 AC 585 ms
80,340 KB
testcase_05 AC 427 ms
78,596 KB
testcase_06 AC 240 ms
77,704 KB
testcase_07 AC 94 ms
76,492 KB
testcase_08 AC 273 ms
77,632 KB
testcase_09 AC 1,110 ms
87,832 KB
testcase_10 AC 37 ms
53,808 KB
testcase_11 AC 827 ms
83,624 KB
testcase_12 AC 759 ms
78,844 KB
testcase_13 AC 765 ms
82,644 KB
testcase_14 AC 1,177 ms
88,496 KB
testcase_15 AC 1,050 ms
86,536 KB
testcase_16 AC 125 ms
76,444 KB
testcase_17 AC 710 ms
82,152 KB
testcase_18 AC 635 ms
80,796 KB
testcase_19 AC 104 ms
76,620 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]
for i in range(n):

    h = base.copy()
    heapify(h)
    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