結果

問題 No.9 モンスターのレベル上げ
ユーザー ryusukeryusuke
提出日時 2022-02-05 17:07:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,751 ms / 5,000 ms
コード長 486 bytes
コンパイル時間 337 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 89,476 KB
最終ジャッジ日時 2024-06-11 13:37:09
合計ジャッジ時間 18,080 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 35 ms
52,096 KB
testcase_02 AC 1,751 ms
89,476 KB
testcase_03 AC 1,476 ms
86,764 KB
testcase_04 AC 836 ms
81,536 KB
testcase_05 AC 604 ms
78,980 KB
testcase_06 AC 328 ms
77,792 KB
testcase_07 AC 122 ms
77,060 KB
testcase_08 AC 375 ms
78,092 KB
testcase_09 AC 1,680 ms
89,112 KB
testcase_10 AC 37 ms
51,968 KB
testcase_11 AC 1,478 ms
87,808 KB
testcase_12 AC 1,402 ms
89,300 KB
testcase_13 AC 1,220 ms
85,276 KB
testcase_14 AC 1,696 ms
89,092 KB
testcase_15 AC 1,593 ms
87,440 KB
testcase_16 AC 164 ms
76,928 KB
testcase_17 AC 1,096 ms
83,196 KB
testcase_18 AC 905 ms
81,384 KB
testcase_19 AC 130 ms
76,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heapify, heappop, heappush

n = int(input())
a = list(map(int, input().split()))
b = list(map(int, input().split()))

ans = []
for start in range(n):
    q = []
    heapify(q)
    for i in range(n):
        heappush(q, (a[i], 0))
    
    for i in range(n):
        p, num = heappop(q)
        p += b[(start + i) % n] // 2
        heappush(q, (p, num + 1))

    ma = 0
    for i in range(n):
        ma = max(ma, heappop(q)[1])
    
    ans.append(ma)

print(min(ans))
0