結果

問題 No.9 モンスターのレベル上げ
ユーザー szkhtsszkhts
提出日時 2020-09-25 16:52:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 4,959 ms / 5,000 ms
コード長 566 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-06-28 05:50:46
合計ジャッジ時間 42,480 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 4,198 ms
11,136 KB
testcase_03 AC 3,282 ms
10,880 KB
testcase_04 AC 1,788 ms
10,880 KB
testcase_05 AC 1,194 ms
10,880 KB
testcase_06 AC 437 ms
10,880 KB
testcase_07 AC 37 ms
10,624 KB
testcase_08 AC 579 ms
10,880 KB
testcase_09 AC 4,059 ms
11,008 KB
testcase_10 AC 31 ms
10,624 KB
testcase_11 AC 4,005 ms
11,008 KB
testcase_12 AC 4,959 ms
10,880 KB
testcase_13 AC 3,939 ms
11,008 KB
testcase_14 AC 4,089 ms
11,008 KB
testcase_15 AC 3,790 ms
11,008 KB
testcase_16 AC 96 ms
10,752 KB
testcase_17 AC 2,433 ms
10,880 KB
testcase_18 AC 2,075 ms
10,880 KB
testcase_19 AC 71 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

N = int(input())
parties = list(map(int, input().split()))
monsters = list(map(int, input().split()))
monsters = monsters + monsters

result = N

for i in range(N):
    k = i
    battles = [(x, 0) for x in parties]
    heapq.heapify(battles)
    for j in range(N):
        idx = battles[0]
        heapq.heappushpop(battles, (idx[0] + monsters[k] // 2, idx[1] + 1))
        k += 1
        if k >= N:
            k = 0
    maximum = 0
    for battle in battles:
        maximum = max(maximum, battle[1])
    result = min(result, maximum)

print(result)
0