結果

問題 No.9 モンスターのレベル上げ
ユーザー tktk_snsntktk_snsn
提出日時 2021-01-02 05:48:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,375 ms / 5,000 ms
コード長 376 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 95,460 KB
最終ジャッジ日時 2024-10-11 19:43:22
合計ジャッジ時間 13,903 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,736 KB
testcase_01 AC 39 ms
52,608 KB
testcase_02 AC 1,317 ms
94,860 KB
testcase_03 AC 1,127 ms
90,972 KB
testcase_04 AC 659 ms
82,436 KB
testcase_05 AC 493 ms
80,616 KB
testcase_06 AC 265 ms
77,932 KB
testcase_07 AC 101 ms
76,348 KB
testcase_08 AC 294 ms
78,312 KB
testcase_09 AC 1,315 ms
94,576 KB
testcase_10 AC 38 ms
52,480 KB
testcase_11 AC 972 ms
87,596 KB
testcase_12 AC 946 ms
85,916 KB
testcase_13 AC 913 ms
86,124 KB
testcase_14 AC 1,375 ms
95,460 KB
testcase_15 AC 1,237 ms
93,000 KB
testcase_16 AC 135 ms
76,792 KB
testcase_17 AC 841 ms
85,132 KB
testcase_18 AC 713 ms
83,608 KB
testcase_19 AC 116 ms
76,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split())) * 2

ans = N
for i in range(N):
    P = [(a, 0) for a in A]
    heapq.heapify(P)
    for j in range(N):
        a, c = heapq.heappop(P)
        a += B[i+j]//2
        c += 1
        heapq.heappush(P, (a, c))
    tmp = max(c for _, c in P)
    ans = min(ans, tmp)

print(ans)
0