結果

問題 No.9 モンスターのレベル上げ
ユーザー roarisroaris
提出日時 2019-10-26 12:11:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,366 ms / 5,000 ms
コード長 437 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 94,184 KB
最終ジャッジ日時 2024-09-14 05:03:46
合計ジャッジ時間 14,869 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,740 KB
testcase_01 AC 41 ms
53,988 KB
testcase_02 AC 1,342 ms
94,080 KB
testcase_03 AC 1,176 ms
90,060 KB
testcase_04 AC 670 ms
81,860 KB
testcase_05 AC 470 ms
79,768 KB
testcase_06 AC 271 ms
77,484 KB
testcase_07 AC 102 ms
76,356 KB
testcase_08 AC 311 ms
77,512 KB
testcase_09 AC 1,341 ms
93,932 KB
testcase_10 AC 40 ms
53,664 KB
testcase_11 AC 1,098 ms
88,580 KB
testcase_12 AC 1,130 ms
89,008 KB
testcase_13 AC 836 ms
84,124 KB
testcase_14 AC 1,366 ms
94,184 KB
testcase_15 AC 1,309 ms
91,972 KB
testcase_16 AC 133 ms
76,220 KB
testcase_17 AC 872 ms
86,092 KB
testcase_18 AC 713 ms
83,080 KB
testcase_19 AC 124 ms
76,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush, heappop

N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
ans = 10**18

for i in range(N):
    pq = []
    
    for j in range(N):
        heappush(pq, (A[j], 0))
    
    for j in range(N):
        level, cnt = heappop(pq)
        level += B[(i+j)%N]//2
        cnt += 1
        heappush(pq, (level, cnt))
    
    ans = min(ans, max(cnt for _, cnt in pq))

print(ans)
0