結果

問題 No.9 モンスターのレベル上げ
ユーザー szkhtsszkhts
提出日時 2024-06-23 08:05:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 470 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-06-23 08:06:27
合計ジャッジ時間 44,870 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 4,353 ms
11,136 KB
testcase_03 AC 3,471 ms
11,008 KB
testcase_04 AC 1,823 ms
11,008 KB
testcase_05 AC 1,257 ms
11,008 KB
testcase_06 AC 442 ms
11,008 KB
testcase_07 AC 37 ms
10,880 KB
testcase_08 AC 636 ms
10,880 KB
testcase_09 AC 4,383 ms
11,264 KB
testcase_10 AC 31 ms
10,752 KB
testcase_11 AC 4,110 ms
11,136 KB
testcase_12 TLE -
testcase_13 AC 4,033 ms
11,264 KB
testcase_14 AC 4,164 ms
11,136 KB
testcase_15 AC 3,984 ms
11,264 KB
testcase_16 AC 95 ms
10,880 KB
testcase_17 AC 2,543 ms
11,136 KB
testcase_18 AC 2,034 ms
11,008 KB
testcase_19 AC 68 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
from types import LambdaType

n = int(input())

allies = list(map(int, input().split()))
enemies = list(map(lambda x: int(x) // 2, input().split()))

ans = n + 1

for s in range(n):
    que = [(allies[i], 0) for i in range(n)]
    heapq.heapify(que)
    temp = 0
    for j in range(n):
        u = heapq.heappop(que)
        heapq.heappush(que, (u[0] + enemies[(s + j) % n], u[1] + 1))
        temp = max(temp, u[1] + 1)
    ans = min(ans, temp)

print(ans)
0