結果
問題 | No.9 モンスターのレベル上げ |
ユーザー | neko_the_shadow |
提出日時 | 2017-01-15 12:34:40 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 570 bytes |
コンパイル時間 | 177 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 18,336 KB |
最終ジャッジ日時 | 2024-06-01 08:34:39 |
合計ジャッジ時間 | 6,667 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 34 ms
11,008 KB |
testcase_01 | AC | 34 ms
11,008 KB |
testcase_02 | TLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
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)