結果

問題 No.9 モンスターのレベル上げ
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-04-12 21:32:43
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 428 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 123,696 KB
最終ジャッジ日時 2024-06-28 17:10:11
合計ジャッジ時間 26,723 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 37 ms
52,864 KB
testcase_02 AC 3,283 ms
123,696 KB
testcase_03 AC 2,587 ms
109,812 KB
testcase_04 AC 1,394 ms
89,984 KB
testcase_05 AC 936 ms
84,376 KB
testcase_06 AC 409 ms
78,400 KB
testcase_07 AC 102 ms
76,524 KB
testcase_08 AC 511 ms
79,288 KB
testcase_09 AC 3,250 ms
122,848 KB
testcase_10 AC 39 ms
52,608 KB
testcase_11 AC 3,907 ms
120,744 KB
testcase_12 TLE -
testcase_13 AC 3,023 ms
104,476 KB
testcase_14 AC 3,285 ms
123,196 KB
testcase_15 AC 2,898 ms
116,448 KB
testcase_16 AC 148 ms
76,588 KB
testcase_17 AC 1,939 ms
99,672 KB
testcase_18 AC 1,589 ms
93,192 KB
testcase_19 AC 133 ms
76,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush, heappop

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

ans = 10**10
for i in range(n):
    h = []
    count = [0]*n
    for ind,a in enumerate(A):
        heappush(h, (a,0,ind))
    for j in range(n):
        a,num,ind = heappop(h)
        count[ind] += 1
        a += B[(i+j)%n]//2
        heappush(h, (a,num+1,ind))
    ans = min(ans,max(count))
print(ans)
0