結果

問題 No.9 モンスターのレベル上げ
ユーザー nagitaosunagitaosu
提出日時 2020-03-13 10:24:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,385 ms / 5,000 ms
コード長 526 bytes
コンパイル時間 675 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 91,896 KB
最終ジャッジ日時 2024-11-21 16:42:46
合計ジャッジ時間 14,543 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,952 KB
testcase_01 AC 40 ms
53,416 KB
testcase_02 AC 1,385 ms
91,896 KB
testcase_03 AC 1,160 ms
87,264 KB
testcase_04 AC 661 ms
80,808 KB
testcase_05 AC 480 ms
79,100 KB
testcase_06 AC 267 ms
77,588 KB
testcase_07 AC 105 ms
76,616 KB
testcase_08 AC 304 ms
77,316 KB
testcase_09 AC 1,384 ms
90,720 KB
testcase_10 AC 41 ms
52,616 KB
testcase_11 AC 1,315 ms
88,696 KB
testcase_12 AC 1,085 ms
88,972 KB
testcase_13 AC 778 ms
83,980 KB
testcase_14 AC 1,290 ms
90,620 KB
testcase_15 AC 1,203 ms
88,284 KB
testcase_16 AC 127 ms
76,768 KB
testcase_17 AC 824 ms
84,268 KB
testcase_18 AC 695 ms
82,132 KB
testcase_19 AC 119 ms
76,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys
input = sys.stdin.readline
from heapq import heappush, heappop

n = int(input())
a = [int(item) for item in input().split()]
b = [int(item) for item in input().split()]

ans = 10**9 
for diff in range(n):
    hq = []
    ret = 0
    for item in a:
        heappush(hq, (item, 0))
    for i in range(diff, diff + n):
        lv, times = heappop(hq)
        heappush(hq, (lv + b[i % n] // 2, times + 1))
        if ret < times + 1:
            ret = times + 1
    ans = min(ans, ret)
print(ans)
0