結果

問題 No.9 モンスターのレベル上げ
ユーザー brthyyjpbrthyyjp
提出日時 2021-11-08 18:23:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,854 ms / 5,000 ms
コード長 579 bytes
コンパイル時間 1,233 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 80,588 KB
最終ジャッジ日時 2024-11-16 14:45:14
合計ジャッジ時間 19,715 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,224 KB
testcase_01 AC 48 ms
52,224 KB
testcase_02 AC 1,852 ms
80,552 KB
testcase_03 AC 1,510 ms
79,204 KB
testcase_04 AC 874 ms
77,408 KB
testcase_05 AC 637 ms
77,168 KB
testcase_06 AC 329 ms
76,952 KB
testcase_07 AC 137 ms
76,788 KB
testcase_08 AC 390 ms
76,512 KB
testcase_09 AC 1,854 ms
80,588 KB
testcase_10 AC 45 ms
51,968 KB
testcase_11 AC 1,613 ms
79,108 KB
testcase_12 AC 1,746 ms
80,012 KB
testcase_13 AC 1,180 ms
78,640 KB
testcase_14 AC 1,813 ms
80,116 KB
testcase_15 AC 1,663 ms
79,340 KB
testcase_16 AC 171 ms
76,644 KB
testcase_17 AC 1,148 ms
79,296 KB
testcase_18 AC 980 ms
77,700 KB
testcase_19 AC 156 ms
76,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))

B = B+B
import heapq
m = 1550
ans = 10**18
for i in range(n):
    q = []
    for a in A:
        q.append(a*m)
    heapq.heapify(q)
    for j in range(i, i+n):
        b = B[j]
        a = heapq.heappop(q)
        level, cnt = divmod(a, m)
        level += b//2
        cnt += 1
        na = level*m+cnt
        heapq.heappush(q, na)
    temp = 0
    while q:
        a = heapq.heappop(q)
        level, cnt = divmod(a, m)
        temp = max(temp, cnt)
    ans = min(ans, temp)
print(ans)
0