結果

問題 No.9 モンスターのレベル上げ
ユーザー AEnAEn
提出日時 2022-12-15 01:32:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,350 ms / 5,000 ms
コード長 418 bytes
コンパイル時間 412 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 92,584 KB
最終ジャッジ日時 2024-11-08 18:08:07
合計ジャッジ時間 14,291 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 41 ms
52,480 KB
testcase_02 AC 1,337 ms
92,584 KB
testcase_03 AC 1,116 ms
87,992 KB
testcase_04 AC 644 ms
81,288 KB
testcase_05 AC 471 ms
79,340 KB
testcase_06 AC 270 ms
77,384 KB
testcase_07 AC 109 ms
76,168 KB
testcase_08 AC 312 ms
77,692 KB
testcase_09 AC 1,280 ms
92,320 KB
testcase_10 AC 40 ms
52,224 KB
testcase_11 AC 1,051 ms
88,992 KB
testcase_12 AC 992 ms
88,912 KB
testcase_13 AC 767 ms
84,476 KB
testcase_14 AC 1,350 ms
92,008 KB
testcase_15 AC 1,194 ms
89,888 KB
testcase_16 AC 137 ms
76,488 KB
testcase_17 AC 842 ms
84,796 KB
testcase_18 AC 694 ms
82,300 KB
testcase_19 AC 127 ms
76,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop, heappush

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

res = float('inf')
for i in range(N):
    h = []
    cnt = 0
    for j in range(N):
        heappush(h,(A[j],0))
    for j in range(N):
        b = B[(i+j)%N]
        lev, num = heappop(h)
        cnt = max(cnt,num+1)
        heappush(h,(lev+b//2,num+1))
    res = min(res, cnt)
print(res)

0