結果

問題 No.9 モンスターのレベル上げ
ユーザー KudeKude
提出日時 2020-09-03 07:52:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 417 bytes
コンパイル時間 878 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 123,416 KB
最終ジャッジ日時 2024-11-22 17:52:38
合計ジャッジ時間 39,034 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,480 KB
testcase_01 AC 41 ms
52,352 KB
testcase_02 AC 3,555 ms
123,416 KB
testcase_03 WA -
testcase_04 AC 1,526 ms
90,112 KB
testcase_05 WA -
testcase_06 AC 434 ms
78,204 KB
testcase_07 AC 95 ms
76,476 KB
testcase_08 AC 536 ms
79,256 KB
testcase_09 AC 3,413 ms
122,316 KB
testcase_10 AC 37 ms
52,608 KB
testcase_11 AC 4,268 ms
120,764 KB
testcase_12 TLE -
testcase_13 AC 3,261 ms
107,040 KB
testcase_14 AC 3,455 ms
122,700 KB
testcase_15 AC 3,187 ms
116,412 KB
testcase_16 AC 147 ms
76,968 KB
testcase_17 AC 2,113 ms
99,228 KB
testcase_18 AC 1,726 ms
93,848 KB
testcase_19 AC 135 ms
76,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush, heappop
n = int(input())
a = list(map(int, input().split()))
b = list(map(int, input().split()))
b = b + b
ans = n
for s in range(n):
    q = []
    cnt = [0] * n
    for i, ai in enumerate(a):
        heappush(q, (ai, 0, i))
    for j in range(s, s + n):
        ai, _, i = heappop(q)
        cnt[i] += 1
        heappush(q, (ai + b[j] // 2, j, i))
    ans = min(ans, max(cnt))
print(ans)
0