結果

問題 No.9 モンスターのレベル上げ
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-04-12 21:30:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 416 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 95,776 KB
最終ジャッジ日時 2024-06-28 17:07:41
合計ジャッジ時間 14,760 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
51,968 KB
testcase_01 AC 42 ms
52,096 KB
testcase_02 AC 1,438 ms
95,420 KB
testcase_03 WA -
testcase_04 AC 664 ms
82,828 KB
testcase_05 AC 469 ms
79,820 KB
testcase_06 AC 262 ms
77,508 KB
testcase_07 AC 113 ms
76,436 KB
testcase_08 AC 306 ms
77,568 KB
testcase_09 AC 1,403 ms
95,776 KB
testcase_10 AC 43 ms
52,224 KB
testcase_11 AC 1,144 ms
90,056 KB
testcase_12 AC 1,142 ms
91,496 KB
testcase_13 WA -
testcase_14 AC 1,393 ms
95,280 KB
testcase_15 AC 1,256 ms
92,732 KB
testcase_16 AC 148 ms
76,648 KB
testcase_17 WA -
testcase_18 AC 719 ms
83,384 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

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,ind))
    for j in range(n):
        a,ind = heappop(h)
        count[ind] += 1
        a += B[(i+j)%n]//2
        heappush(h, (a,ind))
    ans = min(ans,max(count))
print(ans)
0