結果

問題 No.9 モンスターのレベル上げ
ユーザー ntudantuda
提出日時 2024-02-26 20:27:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,242 ms / 5,000 ms
コード長 374 bytes
コンパイル時間 338 ms
コンパイル使用メモリ 82,016 KB
実行使用メモリ 85,664 KB
最終ジャッジ日時 2024-09-29 11:44:22
合計ジャッジ時間 12,919 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,568 KB
testcase_01 AC 38 ms
54,236 KB
testcase_02 AC 1,242 ms
85,664 KB
testcase_03 AC 1,021 ms
83,220 KB
testcase_04 AC 600 ms
79,264 KB
testcase_05 AC 453 ms
78,184 KB
testcase_06 AC 254 ms
77,688 KB
testcase_07 AC 93 ms
76,044 KB
testcase_08 AC 280 ms
77,344 KB
testcase_09 AC 1,195 ms
84,916 KB
testcase_10 AC 37 ms
52,928 KB
testcase_11 AC 884 ms
83,192 KB
testcase_12 AC 853 ms
78,680 KB
testcase_13 AC 830 ms
83,140 KB
testcase_14 AC 1,219 ms
84,984 KB
testcase_15 AC 1,113 ms
84,716 KB
testcase_16 AC 131 ms
77,032 KB
testcase_17 AC 755 ms
80,488 KB
testcase_18 AC 659 ms
79,696 KB
testcase_19 AC 110 ms
76,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *
N = int(input())
A = [(a,0) for i,a in enumerate(list(map(int,input().split())))]
B = list(map(int,input().split()))
ans = 2000
for i in range(N):
    tmp = 0
    Q = A[:]
    heapify(Q)
    for j in range(N):
        a,k = heappop(Q)
        a += B[(i+j)%N] // 2
        heappush(Q,(a,k+1))
        tmp = max(tmp,k+1)
    ans = min(ans,tmp)
print(ans)

0