結果

問題 No.9 モンスターのレベル上げ
ユーザー zer0zer0
提出日時 2020-03-30 23:46:22
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 323 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-06-23 07:12:35
合計ジャッジ時間 1,756 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 25 ms
11,008 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 28 ms
10,752 KB
testcase_11 AC 32 ms
11,136 KB
testcase_12 AC 33 ms
10,880 KB
testcase_13 AC 29 ms
11,136 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 29 ms
11,008 KB
testcase_18 AC 29 ms
11,008 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
N = int(input())
a = list(map(int, input().split()))
b = list(map(int, input().split()))
hq = []
for i in a:
    heapq.heappush(hq, [i, 0])


for i in b:
    l, c = heapq.heappop(hq)
    heapq.heappush(hq, [l + (i // 2), c + 1])

ans = 0
while hq:
    l, c = heapq.heappop(hq)
    ans = max(ans, c)

print(ans)
0