結果

問題 No.9 モンスターのレベル上げ
ユーザー chocoruskchocorusk
提出日時 2020-09-07 14:00:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,119 ms / 5,000 ms
コード長 353 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 93,308 KB
最終ジャッジ日時 2024-05-06 23:43:32
合計ジャッジ時間 11,857 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,608 KB
testcase_01 AC 37 ms
52,608 KB
testcase_02 AC 1,106 ms
93,308 KB
testcase_03 AC 913 ms
89,204 KB
testcase_04 AC 515 ms
80,576 KB
testcase_05 AC 400 ms
79,440 KB
testcase_06 AC 207 ms
77,312 KB
testcase_07 AC 89 ms
76,288 KB
testcase_08 AC 242 ms
77,796 KB
testcase_09 AC 1,119 ms
92,408 KB
testcase_10 AC 37 ms
52,096 KB
testcase_11 AC 892 ms
87,476 KB
testcase_12 AC 830 ms
87,652 KB
testcase_13 AC 752 ms
86,660 KB
testcase_14 AC 1,051 ms
88,788 KB
testcase_15 AC 1,042 ms
87,748 KB
testcase_16 AC 121 ms
76,520 KB
testcase_17 AC 677 ms
82,480 KB
testcase_18 AC 597 ms
81,440 KB
testcase_19 AC 104 ms
76,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int, input().split()))
b=list(map(int, input().split()))
b=b+b
import heapq
ans=n
for i in range(n):
    que=[(x, 0) for x in a]
    heapq.heapify(que)
    for x in b[i:i+n]:
        p=que[0]
        heapq.heappushpop(que, (p[0]+x//2, p[1]+1))
    mx=0
    for p in que:
        mx=max(mx, p[1])
    ans=min(ans, mx)
print(ans)
0