結果

問題 No.9 モンスターのレベル上げ
ユーザー nisizawanisizawa
提出日時 2017-12-19 11:51:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,245 ms / 5,000 ms
コード長 465 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 88,508 KB
最終ジャッジ日時 2024-06-24 00:19:04
合計ジャッジ時間 12,956 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,008 KB
testcase_01 AC 40 ms
54,060 KB
testcase_02 AC 1,245 ms
88,508 KB
testcase_03 AC 1,012 ms
84,876 KB
testcase_04 AC 594 ms
79,880 KB
testcase_05 AC 434 ms
78,504 KB
testcase_06 AC 227 ms
77,200 KB
testcase_07 AC 87 ms
76,488 KB
testcase_08 AC 261 ms
77,160 KB
testcase_09 AC 1,216 ms
87,716 KB
testcase_10 AC 39 ms
52,740 KB
testcase_11 AC 952 ms
86,320 KB
testcase_12 AC 988 ms
85,536 KB
testcase_13 AC 839 ms
85,544 KB
testcase_14 AC 1,217 ms
87,848 KB
testcase_15 AC 1,128 ms
86,636 KB
testcase_16 AC 113 ms
76,584 KB
testcase_17 AC 767 ms
82,144 KB
testcase_18 AC 660 ms
80,664 KB
testcase_19 AC 104 ms
76,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

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

ct_max_min = float('inf')
for i in range(n):
    hq = [(a, 0) for a in a_ls]
    heapq.heapify(hq)
    
    ct_max = 0
    for j in range(n):
        lv, ct = hq[0]
        lv += b_ls[(i + j) % n] // 2
        ct += 1
        heapq.heapreplace(hq, (lv, ct))
        ct_max = max(ct, ct_max)

    ct_max_min = min(ct_max_min, ct_max)

print(ct_max_min)
0