結果

問題 No.9 モンスターのレベル上げ
ユーザー kohei2019kohei2019
提出日時 2021-02-03 09:00:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,031 ms / 5,000 ms
コード長 466 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 90,920 KB
最終ジャッジ日時 2024-06-30 00:12:56
合計ジャッジ時間 20,394 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,736 KB
testcase_01 AC 42 ms
52,480 KB
testcase_02 AC 2,031 ms
90,920 KB
testcase_03 AC 1,742 ms
87,312 KB
testcase_04 AC 974 ms
80,980 KB
testcase_05 AC 706 ms
79,544 KB
testcase_06 AC 371 ms
77,996 KB
testcase_07 AC 116 ms
77,520 KB
testcase_08 AC 431 ms
78,396 KB
testcase_09 AC 1,990 ms
90,792 KB
testcase_10 AC 39 ms
52,352 KB
testcase_11 AC 1,617 ms
88,964 KB
testcase_12 AC 1,599 ms
88,548 KB
testcase_13 AC 1,224 ms
86,288 KB
testcase_14 AC 1,972 ms
90,604 KB
testcase_15 AC 1,876 ms
89,460 KB
testcase_16 AC 170 ms
77,844 KB
testcase_17 AC 1,270 ms
83,808 KB
testcase_18 AC 1,081 ms
82,244 KB
testcase_19 AC 143 ms
77,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
N = int(input())
lsA = list(map(int,input().split()))
lsB = list(map(int,input().split()))
#N**2logN
ans = float('INF')
for st in range(N):
    h = [(i,0) for i in lsA]
    heapq.heapify(h)
    for i in range(N):
        lv,times = heapq.heappop(h)
        lv += lsB[(st+i)%N]//2
        heapq.heappush(h,(lv,times+1))
    cnt = 0
    for i in range(N):
        lv,times = heapq.heappop(h)
        cnt = max(cnt,times)
    ans = min(cnt,ans)
print(ans)
0