結果

問題 No.9 モンスターのレベル上げ
ユーザー KudeKude
提出日時 2020-09-03 08:01:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 503 bytes
コンパイル時間 395 ms
コンパイル使用メモリ 82,980 KB
実行使用メモリ 193,604 KB
最終ジャッジ日時 2024-11-22 18:10:04
合計ジャッジ時間 40,922 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,988 KB
testcase_01 AC 40 ms
53,484 KB
testcase_02 AC 3,737 ms
121,352 KB
testcase_03 WA -
testcase_04 AC 1,573 ms
88,912 KB
testcase_05 WA -
testcase_06 AC 447 ms
78,440 KB
testcase_07 AC 106 ms
76,248 KB
testcase_08 AC 564 ms
79,220 KB
testcase_09 AC 3,710 ms
120,260 KB
testcase_10 AC 41 ms
53,312 KB
testcase_11 AC 4,501 ms
120,452 KB
testcase_12 TLE -
testcase_13 AC 3,469 ms
107,440 KB
testcase_14 AC 3,761 ms
120,536 KB
testcase_15 AC 3,416 ms
114,572 KB
testcase_16 AC 154 ms
76,356 KB
testcase_17 AC 2,209 ms
97,644 KB
testcase_18 AC 1,810 ms
92,648 KB
testcase_19 AC 140 ms
193,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush, heappop
def solve():
    n = int(input())
    a = list(map(int, input().split()))
    b = list(map(int, input().split()))
    b = b + b
    ans = n
    for s in range(n):
        q = []
        cnt = [0] * n
        for i, ai in enumerate(a):
            heappush(q, (ai, -1, i))
        for j in range(s, s + n):
            ai, _, i = heappop(q)
            cnt[i] += 1
            heappush(q, (ai + b[j] // 2, j, i))
        ans = min(ans, max(cnt))
    print(ans)
solve()
0