結果

問題 No.9 モンスターのレベル上げ
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-04-12 21:42:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,002 ms / 5,000 ms
コード長 404 bytes
コンパイル時間 4,114 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 86,112 KB
最終ジャッジ日時 2024-06-28 17:23:16
合計ジャッジ時間 13,091 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,224 KB
testcase_01 AC 34 ms
52,608 KB
testcase_02 AC 944 ms
85,168 KB
testcase_03 AC 816 ms
83,380 KB
testcase_04 AC 496 ms
79,480 KB
testcase_05 AC 363 ms
78,452 KB
testcase_06 AC 196 ms
76,892 KB
testcase_07 AC 78 ms
76,244 KB
testcase_08 AC 220 ms
77,336 KB
testcase_09 AC 924 ms
85,548 KB
testcase_10 AC 32 ms
52,352 KB
testcase_11 AC 706 ms
81,768 KB
testcase_12 AC 714 ms
78,408 KB
testcase_13 AC 642 ms
81,472 KB
testcase_14 AC 1,002 ms
86,112 KB
testcase_15 AC 863 ms
84,184 KB
testcase_16 AC 110 ms
76,644 KB
testcase_17 AC 589 ms
80,816 KB
testcase_18 AC 530 ms
80,448 KB
testcase_19 AC 90 ms
76,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush, heappop, heapify

n = int(input())
A = list(map(int,input().split()))
B = list(map(int,input().split()))
B = [b//2 for b in B]
B += B
ans = 10**10
base = [(a,0) for a in A]
heapify(base)
for i in range(n):

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