結果

問題 No.9 モンスターのレベル上げ
ユーザー neko_the_shadowneko_the_shadow
提出日時 2017-01-15 12:35:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,334 ms / 5,000 ms
コード長 570 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 107,008 KB
最終ジャッジ日時 2024-06-23 23:50:24
合計ジャッジ時間 24,566 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,980 KB
testcase_01 AC 47 ms
55,396 KB
testcase_02 AC 2,334 ms
106,104 KB
testcase_03 AC 2,142 ms
98,144 KB
testcase_04 AC 1,157 ms
86,268 KB
testcase_05 AC 820 ms
82,896 KB
testcase_06 AC 415 ms
78,880 KB
testcase_07 AC 129 ms
77,676 KB
testcase_08 AC 485 ms
79,588 KB
testcase_09 AC 2,330 ms
103,648 KB
testcase_10 AC 44 ms
54,472 KB
testcase_11 AC 2,037 ms
103,884 KB
testcase_12 AC 2,041 ms
88,268 KB
testcase_13 AC 2,039 ms
107,008 KB
testcase_14 AC 2,313 ms
103,800 KB
testcase_15 AC 2,126 ms
100,672 KB
testcase_16 AC 185 ms
78,056 KB
testcase_17 AC 1,497 ms
91,044 KB
testcase_18 AC 1,271 ms
87,980 KB
testcase_19 AC 160 ms
78,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import copy, heapq

if __name__ == '__main__':
    n = int(input())
    abstract_ally = [(int(a), 0) for a in input().split()]
    enemy = [int(b) for b in input().split()]

    heapq.heapify(abstract_ally)

    answer = float('inf')
    for start in range(n):
        ally = copy.deepcopy(abstract_ally)

        for diff in range(n):
            level, cnt = heapq.heappop(ally)
            i = (start + diff) % n

            heapq.heappush(ally, (level + enemy[i] // 2, cnt + 1))

        answer = min(answer, max(cnt for level, cnt in ally))
    
    print(answer)
0