結果

問題 No.9 モンスターのレベル上げ
ユーザー szkhtsszkhts
提出日時 2022-04-16 08:21:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 470 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-06-07 11:40:21
合計ジャッジ時間 43,882 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 4,317 ms
11,136 KB
testcase_03 AC 3,401 ms
11,008 KB
testcase_04 AC 1,856 ms
11,008 KB
testcase_05 AC 1,260 ms
11,008 KB
testcase_06 AC 453 ms
10,880 KB
testcase_07 AC 39 ms
10,624 KB
testcase_08 AC 606 ms
10,880 KB
testcase_09 AC 4,262 ms
11,136 KB
testcase_10 AC 31 ms
10,880 KB
testcase_11 AC 4,096 ms
11,136 KB
testcase_12 TLE -
testcase_13 AC 4,051 ms
11,136 KB
testcase_14 AC 4,215 ms
11,136 KB
testcase_15 AC 3,928 ms
11,136 KB
testcase_16 AC 100 ms
10,752 KB
testcase_17 AC 2,543 ms
11,008 KB
testcase_18 AC 2,123 ms
11,008 KB
testcase_19 AC 73 ms
10,624 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