結果

問題 No.9 モンスターのレベル上げ
ユーザー dangodango
提出日時 2023-07-08 08:56:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,127 ms / 5,000 ms
コード長 396 bytes
コンパイル時間 355 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 78,500 KB
最終ジャッジ日時 2024-07-22 04:46:58
合計ジャッジ時間 12,529 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,760 KB
testcase_01 AC 40 ms
52,612 KB
testcase_02 AC 1,127 ms
78,500 KB
testcase_03 AC 859 ms
77,488 KB
testcase_04 AC 478 ms
76,572 KB
testcase_05 AC 320 ms
76,132 KB
testcase_06 AC 143 ms
75,764 KB
testcase_07 AC 56 ms
67,516 KB
testcase_08 AC 174 ms
76,116 KB
testcase_09 AC 1,073 ms
78,256 KB
testcase_10 AC 39 ms
52,936 KB
testcase_11 AC 879 ms
78,288 KB
testcase_12 AC 990 ms
78,204 KB
testcase_13 AC 1,037 ms
78,236 KB
testcase_14 AC 1,082 ms
78,216 KB
testcase_15 AC 957 ms
77,872 KB
testcase_16 AC 73 ms
76,092 KB
testcase_17 AC 608 ms
77,128 KB
testcase_18 AC 504 ms
76,924 KB
testcase_19 AC 67 ms
75,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left
n = int(input())
a = sorted(map(lambda i: int(i) * 2000, input().split())) + [10 ** 9]
b = list(map(lambda i: int(i) // 2, input().split()))
def f(i):
    pq = a[:]
    for e in b[i:] + b[:i]:
        l = pq.pop(0)
        up = l + e * 2000 + 1
        pq.insert(bisect_left(pq, up), up)
    return max(x % 2000 for x in pq[:-1])
print(min(f(i) for i in range(n)))
0